Skip to content

Instantly share code, notes, and snippets.

@raaar
Created October 13, 2012 14:27
Show Gist options
  • Save raaar/3884821 to your computer and use it in GitHub Desktop.
Save raaar/3884821 to your computer and use it in GitHub Desktop.
WORDPRESS: the_content with strip tags
<?php
ob_start();
the_content(''.__('Read more <span class="meta-nav">&raquo;</span>', 'sandbox').'');
$old_content = ob_get_clean();
$new_content = strip_tags($old_content, '<img><p><b><br /><input><form><img><textarea><li><ol><ul><table>');
echo $new_content;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment