Created
November 7, 2014 17:03
-
-
Save davechu/5d5db01c0dcdabe2e3fd to your computer and use it in GitHub Desktop.
For Chris. genesis_entry_content could be filtered, but that's usually to put stuff before or after the content. So I'd suggest doing the WP function.
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( 'the_content', 'dc_cleanse_that_sucker' ); | |
function dc_cleanse_that_sucker ( $glop ) { | |
// do your stuff here | |
return $glop; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment