/** * Extraction utility to get attributes from an HTML tag. * * Example given defaults to WooCommerce "data-" attributes, but you …
utilities
Run WordPress in debug mode without access to wp-config
add_action( 'template_redirect', 'my_enable_debug_mode' ); function my_enable_debug_mode() { // Turn on error reporting. …
Error log utility function
/** * Writes string, array, and object data to the WP error log. * * To use, pass the result to write to the log as follows: * …
Call a shortcode function by tag name
/** * Call a shortcode function by its tag name. * * Directly executes a shortcode's callback function using the shortcode's * tag …