Skip to content

Instantly share code, notes, and snippets.

@robbens
Last active April 18, 2017 10:56
Show Gist options
  • Save robbens/86896d09388b80e0c70f492f47755bc3 to your computer and use it in GitHub Desktop.
Save robbens/86896d09388b80e0c70f492f47755bc3 to your computer and use it in GitHub Desktop.
Disable WordPress comments on attachment page
<?php
add_filter('comments_open', function ($open, $post_id) {
$post = get_post($post_id);
if ($post->post_type == 'attachment') {
return false;
}
return $open;
}, 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment