Created
May 2, 2012 15:18
-
-
Save aaronjorbin/2577395 to your computer and use it in GitHub Desktop.
AddThis Remove from BBPress Topics
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
<?php | |
/* | |
* +--------------------------------------------------------------------------+ | |
* | Copyright (c) 2012 Add This, LLC | | |
* +--------------------------------------------------------------------------+ | |
* | This program is free software; you can redistribute it and/or modify | | |
* | it under the terms of the GNU General Public License as published by | | |
* | the Free Software Foundation; either version 2 of the License, or | | |
* | (at your option) any later version. | | |
* | | | |
* | This program is distributed in the hope that it will be useful, | | |
* | but WITHOUT ANY WARRANTY; without even the implied warranty of | | |
* | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | | |
* | GNU General Public License for more details. | | |
* | | | |
* | You should have received a copy of the GNU General Public License | | |
* | along with this program; if not, write to the Free Software | | |
* | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | | |
* +--------------------------------------------------------------------------+ | |
*/ | |
/** | |
* Plugin Name: AddThis Remove from BBPress Topics | |
* Plugin URI: http://www.addthis.com | |
* Description: Don't display the AddThis bookmark tool on BBPress Topics | |
* Version: 0.1 | |
* | |
* Author: The AddThis Team | |
* Author URI: http://www.addthis.com/blog | |
*/ | |
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 ( '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
Thanks for posting.
This removes AddThis from topic pages, but it still appears on forum pages. I was able to remove AddThis from forum pages as well by changing the conditional in line 36.
See: https://gist.github.com/laflier/14b7b0dbc35018b127d0