Skip to content

Instantly share code, notes, and snippets.

@wookiecooking
Created May 14, 2013 03:40
Show Gist options
  • Save wookiecooking/5573502 to your computer and use it in GitHub Desktop.
Save wookiecooking/5573502 to your computer and use it in GitHub Desktop.
[WordPress] Raw Posts removes autoformatting within shortcode
<?php
/*
Plugin Name: Raw Posts
Description: Removes WordPress auto formatting using the short code [raw] [/raw]
*/
remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'rawposts', 99);
function rawposts($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;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment