• I’d like to add a “Leave a comment” link at the end of each of my blog posts that appear directly on my homepage Must Have Boxes. Currently users can only leave a reply after they’ve clicked on blog post and are taken to the secondary page. Any help would be greatly appreciated!

    FOR REFERENCE: My other blog theme at Day Today Dating shows a “Leave a comment” link with each post on the homepage and the link shows the number of comments once they are made. I’d love to replicate this feature.

Viewing 1 replies (of 1 total)
  • To do that, you have to edit your theme’s template PHP files.
    Edit the file single.php, after you find where you want to add the “Leave a comment” link, add the following code :

    <?php comments_template(); ?>

    or

    <?php get_template_part('comments'); ?>

    or

    <?php include("comments.php");?>

Viewing 1 replies (of 1 total)
  • The topic ‘Add "Leave a comment" link at bottom of each post’ is closed to new replies.