Disable Comments on Media Attachments
Disables comments on media attachment pages
PHP
function disable_media_comments($open, $post_id) {
$post = get_post($post_id);
if ($post->post_type == 'attachment') {
return false;
}
return $open;
}
add_filter('comments_open', 'disable_media_comments', 10, 2);
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY