Skip to content
View hcalvo's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report hcalvo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. crear imágenes en blanco y negro al ... crear imágenes en blanco y negro al momento de subirlas a wordpress
    1
    <?php
    2
    
                  
    3
    add_filter('wp_generate_attachment_metadata','HC_bw_filter');
    4
    
                  
    5
    function HC_bw_filter($meta) {
  2. Detiene el envío de correos para la ... Detiene el envío de correos para la moderación de comentarios
    1
    <?php
    2
    // Detiene el envío de correos para la moderación de comentarios
    3
    function detiene_correos_webmaster( $emails, $comment_id ) {
    4
        $webmaster_email = get_option('admin_email');
    5
        if ( $emails[0] == $webmaster_email )