Guest User

Untitled

a guest
Oct 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Remove Comments on Attachment
  5. * @author Bill Erickson
  6. *
  7. */
  8. function be_remove_comments_on_attachment() {
  9. if( is_attachment() )
  10. remove_action( 'genesis_after_post', 'genesis_get_comments_template' );
  11.  
  12. }
  13.  
  14. add_action( 'genesis_meta', 'be_remove_comments_on_attachment' );
Add Comment
Please, Sign In to add comment