Can’t cancel comments in CPT
-
Hi, I created a CPT (via a one-function plugin I wrote) without support for comments, and I still get a comments section in my custom posts.
I even tried to remove comments support with a function in a child theme’s functions.php:
function remove_chapters_comments() { remove_post_type_support( 'Chapters', 'comments' ); } add_action( 'init', 'remove_chapters_comments', 1 );
It doesn’t work. Nothing I do removes the comments option from the CPT. Even under Appearance > Customize > Blog > Single Post, if I click on the eye icon next to “comments”, it only cancels them out in regular posts, not in the CPT.
How do I cancel comments on my CPT??
Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Can’t cancel comments in CPT’ is closed to new replies.