Created
June 10, 2014 23:17
-
-
Save laflier/14b7b0dbc35018b127d0 to your computer and use it in GitHub Desktop.
Removes AddThis from bbPress topics and forums
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Edited version of https://gist.github.com/aaronjorbin/2577395 | |
* Removes AddThis from bbPress topics and forums | |
* Place in your theme's functions.php file | |
*/ | |
add_filter('addthis_post_exclude', 'at_cookbook_addthis_bbpress_topic_exclude'); | |
function at_cookbook_addthis_bbpress_topic_exclude($display) | |
{ | |
// remove AddThis from topic post types in bbpress | |
if ( ( 'forum' == get_post_type() ) || ( 'topic' == get_post_type() ) ) { | |
$display = false; | |
} | |
return $display; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment