Skip to content

Instantly share code, notes, and snippets.

@whyisjake
Last active December 27, 2015 00:49
Show Gist options
  • Save whyisjake/7240259 to your computer and use it in GitHub Desktop.
Save whyisjake/7240259 to your computer and use it in GitHub Desktop.
<?php
function make_remove_likes() {
global $post;
if ( get_post_type() == 'projects' ) {
remove_filter( 'the_content', 'sharing_display', 1 );
remove_filter( 'the_content', 'post_likes', 1 );
}
}
add_filter( 'the_content', 'make_remove_likes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment