Skip to content

Instantly share code, notes, and snippets.

@ericmann
Created May 8, 2013 20:23
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 ericmann/5543349 to your computer and use it in GitHub Desktop.
Save ericmann/5543349 to your computer and use it in GitHub Desktop.
<?php
$one_off_filter = function( $text ) {
return str_replace( 'something', 'else', $text );
}
add_filter( 'the_content', $one_off_filter );
the_content();
remove_filter( 'the_content', $one_off_filter );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment