Skip to content

Instantly share code, notes, and snippets.

@bizzthemes
Created February 20, 2014 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bizzthemes/9115315 to your computer and use it in GitHub Desktop.
Save bizzthemes/9115315 to your computer and use it in GitHub Desktop.
Add more HTML tags to content limited by character count
<?php
//* Do NOT include the opening php tag, only copy the code below
//* Add new HTML tags to content, limited by character count
add_filter( 'get_the_content_limit_allowedtags', 'custom_content_limit_allowedtags' );
function custom_content_limit_allowedtags() {
return '<ul>,<ol>,<li>,<script>,<style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment