Created
November 15, 2012 22:17
-
-
Save Pleiades/4081765 to your computer and use it in GitHub Desktop.
Disable WordPress Formatting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[raw]My unformatted text[/raw] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment