Skip to content

Instantly share code, notes, and snippets.

@lstanard
Last active March 15, 2016 19:26
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 lstanard/32b62ef29856ecda9547 to your computer and use it in GitHub Desktop.
Save lstanard/32b62ef29856ecda9547 to your computer and use it in GitHub Desktop.
WP action and callback function to remove support for comments from the 'post' post type
function remove_comment_capability() {
remove_post_type_support('post', 'comments');
remove_post_type_support('page', 'comments');
}
add_action('init', 'remove_comment_capability');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment