Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Last active November 25, 2017 19:39
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 cre8tivediva/99e600e127aa6bce143956c695972da0 to your computer and use it in GitHub Desktop.
Save cre8tivediva/99e600e127aa6bce143956c695972da0 to your computer and use it in GitHub Desktop.
Add Comments to Portfolio Post Type
// Add Comments to Portfolio Custom Post Type (https://codex.wordpress.org/Function_Reference/add_post_type_support)
function add_comments_portfolio() {
add_post_type_support( 'portfolio', 'comments' );
}
add_action( 'init', 'add_comments_portfolio', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment