Skip to content

Instantly share code, notes, and snippets.

@nickdavis
Last active March 16, 2018 21:36
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 nickdavis/fd8a1c75c6f68389f6f087a9f63357df to your computer and use it in GitHub Desktop.
Save nickdavis/fd8a1c75c6f68389f6f087a9f63357df to your computer and use it in GitHub Desktop.
A 'long way' example of removing text via add_filter in WordPress
<?php
add_filter( 'my_filter', 'remove_my_filter_text' );
/**
* Removes the text (long way).
*/
function remove_my_filter_text() {
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment