Specifically, I found this function to be the problem:
/*// DISABLE AUTOFORMATING POSTS
function my_formatter($content) {
$new_content = '';
$pattern_full = '{(\[noformat\].*?\[/noformat\])}is';
$pattern_contents = '{\[noformat\](.*?)\[/noformat\]}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);*/
Is there a way I can fix it so it works with Gravity Forms? Or is it really doing anything useful?
Thanks,
Casey
Posted 14 years ago on Sunday June 13, 2010 |
Permalink