You appear to be a bot. Output may be restricted
Description
Regular Expression callable for do_shortcode_earlier() for calling shortcode hook.
Usage
$mixed = do_shortcode_tag_earlier( $m );
Parameters
- $m
- ( array ) required – Regular expression match array
Returns
mixed False on failure.Source
File name: oik-css/includes/shortcodes-earlier.phpLines:
1 to 9 of 9
function do_shortcode_tag_earlier( $m ) { $return = do_shortcode_tag( $m ); $tag = $m[2]; $shortcodes = apply_filters( "no_texturize_shortcodes", array() ); if ( count( $shortcodes ) && in_array( $tag, $shortcodes ) ) { $return = notext_wrappit( $return ); } return( $return ); }View on GitHub View on Trac