Skip to content

Instantly share code, notes, and snippets.

@topleague
Created September 3, 2017 05:29
Show Gist options
  • Save topleague/3b862e6e7db149d607019703ff4d4d64 to your computer and use it in GitHub Desktop.
Save topleague/3b862e6e7db149d607019703ff4d4d64 to your computer and use it in GitHub Desktop.
Use HTML Tags in Genesis Excerpts
add_filter('get_the_content_limit_allowedtags', 'genesiswp_custom_allowedtags');
function genesiswp_custom_allowedtags() {
return '<script>,<style>,<b>,<br>,<em>'; //add whatever tags you want to this string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment