Revision: 37587
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at December 13, 2010 06:39 by mb2o
Initial Code
function my_formatter($content) {   ÂÂ
$new_content = '';   ÂÂ
$pattern_full = '{(\[raw\].*?\[/raw\])}is';   ÂÂ
$pattern_contents = '{\[raw\](.*?)\[/raw\]}is';   ÂÂ
$pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);   ÂÂ
foreach ($pieces as $piece) {       ÂÂ
if (preg_match($pattern_contents, $piece, $matches)) {           ÂÂ
$new_content .= $matches[1];       ÂÂ
} else {           ÂÂ
$new_content .= wptexturize(wpautop($piece));       ÂÂ
}   ÂÂ
}   ÂÂ
return $new_content;
}
remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'my_formatter', 99);
Initial URL
http://css-tricks.com/snippets/wordpress/disable-automatic-formatting-using-a-shortcode/
Initial Description
Initial Title
Disable Automatic Formatting Using a Shortcode
Initial Tags
wordpress
Initial Language
PHP