Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theodorocaliari/7214471 to your computer and use it in GitHub Desktop.
Save theodorocaliari/7214471 to your computer and use it in GitHub Desktop.
Remove comments in WP slimjetpack carrousel
<?php
//remove comments from jetpack carrousel
function filter_media_comment_status( $open, $post_id ) {
// http://aahank.com/2013/disable-comments-jetpack-carousel/
$post = get_post( $post_id );
if( $post->post_type == 'attachment' ) {
return false;
}
return $open;
}
add_filter( 'comments_open', 'filter_media_comment_status', 10 , 2 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment