Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created September 15, 2018 15:09
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 DavidPeralvarez/21a00e8d70e097d336e9528f71fb64cb to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/21a00e8d70e097d336e9528f71fb64cb to your computer and use it in GitHub Desktop.
Cómo desactivar los comentarios en un Custom Post Type
/**
* Remove comments support from posts.
*/
add_action( 'init', 'scv_remove_comments_from_posts', 10 );
function scv_remove_comments_from_posts() {
remove_post_type_support( 'post', 'comments' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment