Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created October 21, 2014 03:30
Show Gist options
  • Select an option

  • Save ckpicker/344cd1a5cbcbdf93a0d7 to your computer and use it in GitHub Desktop.

Select an option

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

jazbek commented Nov 21, 2014

Copy link
Copy Markdown

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

@bordoni

bordoni commented Dec 12, 2014

Copy link
Copy Markdown

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