No comments on media pages
Closes comments on attachment pages, which nobody means to comment on and bots love.
<?php
add_filter(
'comments_open',
static fn( $open, $post_id ) => 'attachment' === get_post_type( $post_id ) ? false : $open,
10,
2
);
add_filter(
'pings_open',
static fn( $open, $post_id ) => 'attachment' === get_post_type( $post_id ) ? false : $open,
10,
2
);
In these packs
- Comments: Fewer spam comments and more control: close old posts, set minimum and maximum lengths, a spam trap, no links.