no_texturize_shortcodes filter-hookWP 2.8.0

Filters the list of shortcodes not to texturize.

Usage

add_filter( 'no_texturize_shortcodes', 'wp_kama_no_texturize_shortcodes_filter' );

/**
 * Function for `no_texturize_shortcodes` filter-hook.
 * 
 * @param string[] $default_no_texturize_shortcodes An array of shortcode names.
 *
 * @return string[]
 */
function wp_kama_no_texturize_shortcodes_filter( $default_no_texturize_shortcodes ){

	// filter...
	return $default_no_texturize_shortcodes;
}
$default_no_texturize_shortcodes(string[])
An array of shortcode names.

Changelog

Since 2.8.0 Introduced.

Where the hook is called

wptexturize()
no_texturize_shortcodes
wp-includes/formatting.php 228
$no_texturize_shortcodes = apply_filters( 'no_texturize_shortcodes', $default_no_texturize_shortcodes );

Where the hook is used in WordPress

Usage not found.