do_shortcode_tag filter-hookWP 4.7.0

Filters the output created by a shortcode callback.

Usage

add_filter( 'do_shortcode_tag', 'wp_kama_do_shortcode_tag_filter', 10, 4 );

/**
 * Function for `do_shortcode_tag` filter-hook.
 * 
 * @param string       $output Shortcode output.
 * @param string       $tag    Shortcode name.
 * @param array|string $attr   Shortcode attributes array or the original arguments string if it cannot be parsed.
 * @param array        $m      Regular expression match array.
 *
 * @return string
 */
function wp_kama_do_shortcode_tag_filter( $output, $tag, $attr, $m ){

	// filter...
	return $output;
}
$output(string)
Shortcode output.
$tag(string)
Shortcode name.
$attr(array|string)
Shortcode attributes array or the original arguments string if it cannot be parsed.
$m(array)
Regular expression match array.

Changelog

Since 4.7.0 Introduced.

Where the hook is called

do_shortcode_tag()
do_shortcode_tag
wp-includes/shortcodes.php 445
return apply_filters( 'do_shortcode_tag', $output, $tag, $attr, $m );

Where the hook is used in WordPress

Usage not found.