Skip to content

Instantly share code, notes, and snippets.

@aaroneaton
Created January 4, 2017 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaroneaton/c22f58e2408ac683f039e119a7712acd to your computer and use it in GitHub Desktop.
Save aaroneaton/c22f58e2408ac683f039e119a7712acd to your computer and use it in GitHub Desktop.
Disables comments on all pages
<?php // Remove this line
// Disable comments on all pages
add_action( 'init', function() {
remove_post_type_support( 'page', 'comments' );
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment