Skip to content

Instantly share code, notes, and snippets.

@AMNDesign
Created August 27, 2013 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AMNDesign/6359774 to your computer and use it in GitHub Desktop.
Save AMNDesign/6359774 to your computer and use it in GitHub Desktop.
Remove AddThis from specific custom post types in WordPress.
<?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