Return to Snippet

Revision: 50041
at August 4, 2011 23:19 by ignacio


Initial Code
//PHP-Code for functions.php
 
function pre_esc_html($content) {
  return preg_replace_callback(
    '#(<pre.*?>)(.*?)(< /pre>)#imsu',
    create_function(
      '$i',
      'return $i[1].esc_html($i[2]).$i[3];'
    ),
    $content
  );
}
 
add_filter(
  'the_content',
  'pre_esc_html'
);

Initial URL


Initial Description


Initial Title
Allows to write code on your blog using the 'pre' tags

Initial Tags
html, code

Initial Language
PHP