{"id":295,"date":"2015-01-22T13:34:21","date_gmt":"2015-01-22T13:34:21","guid":{"rendered":"http:\/\/localhost\/syllogic\/wp\/?p=295"},"modified":"2024-02-02T12:22:27","modified_gmt":"2024-02-02T12:22:27","slug":"how-to-disable-comments-on-wordpress-media-attachments","status":"publish","type":"post","link":"http:\/\/localhost:10008\/how-to-disable-comments-on-wordpress-media-attachments\/","title":{"rendered":"How to Disable Comments on WordPress Media Attachments"},"content":{"rendered":"\n
A lovely little piece of code to disable comments on Media Attachment pages which is a source of irritating SPAM…<\/p>\n\n\n\n
Just paste the following in your functions.php<\/mark><\/code> file.<\/p>\n\n\n\n
function filter_media_comment_status( $open, $post_id ) {\n\t$post = get_post( $post_id );\n\tif( $post->post_type == 'attachment' ) {\n\t\treturn false;\n\t}\n\treturn $open;\n}\nadd_filter( 'comments_open', 'filter_media_comment_status', 10 , 2 );\n<\/code><\/pre>\n\n\n\n