Skip to content

Instantly share code, notes, and snippets.

@dana-ross
Last active January 5, 2016 14:53
Show Gist options
  • Save dana-ross/966bfc240bba248233d8 to your computer and use it in GitHub Desktop.
Save dana-ross/966bfc240bba248233d8 to your computer and use it in GitHub Desktop.
$add_the_content_filter = partially_apply( 'add_filter', 'the_content' );
function reverse_the_content( $content ) {
return strrev( $content );
}
$add_the_content_filter( 'reverse_the_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment