Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #182438

    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!

    #183187

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘User comments added to regular pages’ is closed to new replies.