How to display comments and comment form on custom post type?

Is it possible in wordpress to display comments and comment form on custom post type, and how to do that?

Thanks in advance.

Related posts

Leave a Reply

1 comment

  1. 1) add “comments” to the supports array when registering the post type.

    Register Post Type

    2) add the comments_template() function inside the loop of the single.php template and you are good to go.

    Add Comment Template To Post