Created
August 27, 2013 22:04
-
-
Save AMNDesign/6359774 to your computer and use it in GitHub Desktop.
Remove AddThis from specific custom post types in WordPress.
This file contains hidden or 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 | |
//* Remove AddThis from specific custom post types | |
add_filter('addthis_post_exclude', 'amn_addthis_post_exclude_filter'); | |
function amn_addthis_post_exclude_filter($display) { | |
if ( in_array(get_post_type(), array('custom_post_type_1', 'custom_post_type_2','custom_post_type_3')) ) | |
$display = false; | |
return $display; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment