I want to make a page on my website similar to a blog post – in that there is an option for users who visit the page to reply and engage in discussion. Is this a possibility?
Thanks!
Hey uattah!
Open page.php, go to line 25:
get_template_part( 'includes/loop', 'page' );
And add this line below it:
comments_template( '/includes/comments.php');
Final code:
get_template_part( 'includes/loop', 'page' );
comments_template( '/includes/comments.php');
Regards,
Josue