Created
September 3, 2017 05:29
-
-
Save topleague/3b862e6e7db149d607019703ff4d4d64 to your computer and use it in GitHub Desktop.
Use HTML Tags in Genesis Excerpts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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