Automatically replace content in PRE tags by HTML Entities
Just paste the following in your functions.php file. Once saved, all your content with <pre> and </pre> tags will be automatically replaced by html entities.
function pre_entities($matches) { return str_replace($matches[1],htmlentities($matches[1]),$matches[0]); } //to html entities; assume content is in the "content" variable $content = preg_replace_callback('/<pre.*?>(.*?)<\/pre>/imsu',pre_entities, $content);
Credits goes to David Walsh for this very cool tip!
By the way, I recently reviewed the new “WpSEO” plugin on CatsWhoBlog so you should definitely take a look!
Looking for WordPress hosting? Try WP Web Host. Prices starts at $5/month and you can try it for free!