Top Google Search Results
- WordPress: undocumented “no_texturize_shortcodes” filter
May 3, 2010 ... Modifying my WP-SynHighlight addon for WordPress I came across a problem, that WordPress rewrites symbols inside my codesyntax ... - Wordpress Text Formatting Problem - Solved! - Hungred Dot Com
Sep 25, 2011... 'code', 'kbd', 'style', 'script', 'tt')); $no_texturize_shortcodes = apply_filters(' no_texturize_shortcodes', array('code')); $no_texturize_tags_stack ... - theme development - Run shortcode before filters - WordPress
Nov 4, 2011 ... You can filter the array $no_texturize_shortcodes, which is a collection of shortcodes that are excluded from wptexturize. If you do this, ... - formatting - Remove wptexturize from a shortcode? - WordPress
Mar 22, 2011 ... function my_no_tex( $shortcodes ) { $shortcodes[] = 'someshortcode'; return $ shortcodes; } add_filter( 'no_texturize_shortcodes', 'my_no_tex' ); ...