Advertisement
santa7

WordPress Comment disable

Jun 21st, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function filter_media_comment_status( $open, $post_id ) {
  2.     $post = get_post( $post_id );
  3.     if( $post->post_type == 'attachment' ) {
  4.         return false;
  5.     }
  6.     return $open;
  7. }
  8. add_filter( 'comments_open', 'filter_media_comment_status', 10 , 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement