Comment forms on some pages

Okay so I am going to teach you, how to add a comment form to your pages on WordPress. It’s really simple actually. Just add the following code to your page.php.
<?php comments_template(); // Get wp-comments.php template ?>
Add the code anywhere before <?php get_footer(); ?>

So mine will look something like this:
<?php wp_link_pages(array('before' => '<strong>Pages:</strong> ', 'after' => '', 'next_or_number' => 'number')); ?>
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; endif; ?>
</div>
<?php get_footer(); ?>

That isn’t all the codes, in page.php, it’s just where the comment code should be placed. If you have anymore questions, feel free to ask me. :)

Post to Twitter