Skip to content

Instantly share code, notes, and snippets.

@krogsgard
Created March 4, 2014 06:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save krogsgard/02df9fc6fe5bd758d21c to your computer and use it in GitHub Desktop.
Save krogsgard/02df9fc6fe5bd758d21c to your computer and use it in GitHub Desktop.
<?php
add_action( 'load-page-new.php', 'poststatus_change_comment_status' );
/**
* Sets default comment and ping status
* to off for "Page" post types
*
*/
function poststatus_change_comment_status() {
add_filter( 'option_default_comment_status', '__return_false' );
add_filter( 'option_default_ping_status', '__return_false' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment