Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created October 21, 2014 03:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ckpicker/344cd1a5cbcbdf93a0d7 to your computer and use it in GitHub Desktop.
Save ckpicker/344cd1a5cbcbdf93a0d7 to your computer and use it in GitHub Desktop.
Remove HTML Credit
function remove_html_credit() {
return '';
}
add_filter( 'tribe_html_credit', 'remove_html_credit' );
@jazbek
Copy link

jazbek commented Nov 21, 2014

since wp 3.7 you can do: add_filter( 'tribe_html_credit', '__return_empty_string' );

@bordoni
Copy link

bordoni commented Dec 12, 2014

If you are previous to WordPress 3.7 you can use:

add_filter( 'tribe_html_credit', '__return_false' );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment