Skip to content
View addzycullen's full-sized avatar

Block or report addzycullen

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. Enable the WordPress Debug log, and ... Enable the WordPress Debug log, and hide errors from displaying on site. To be placed in wp_config file below DB prefix
    1
    define( 'WP_DEBUG', true );
    2
    
                  
    3
    if ( WP_DEBUG ) {
    4
    	define( 'WP_DEBUG_LOG', true );
    5
    	define( 'WP_DEBUG_DISPLAY', false );
  2. Telephone Number Format for href - A... Telephone Number Format for href - Adapted from another source, unfortunately I don't recall where, let me know if you have seen this anywhere so I can credit.
    1
    /*
    2
    	$original = '+44 (0)1234 567 890';
    3
    	$original = '0044 01234 567 890';
    4
    	$original = '01234 567 890';
    5
    	$original = '44 1234 567 890';
  3. This fn allows you write to the Word... This fn allows you write to the WordPress debug log if you have it enabled in the wp_config file.
    1
    /**
    2
     * Write to Debug Log
    3
     *
    4
     * Add to your functions.php file for use in a theme.
    5
     * Remember to remove from live environment.