• Resolved amanonline

    (@amanonline)


    Hi to all,
    I am using latest version of WP. have a look:
    https://www.xviews.info

    I just want to put the link for comments for each post that is available on the home page. Like in default wordpress theme.(For example: No Comments, 2 comments etc)

    I hope you understand.

    So, How can i do that?

    Please help… Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • open the theme’s index.php and find this

    <?php the_content('<strong>Read more &raquo;</strong>'); ?>
    							</div>
    						</div>

    right after add this
    <?php comments_template(); ?>
    so it looks like this

    <?php the_content('<strong>Read more &raquo;</strong>'); ?>
    							</div>
    						</div>
    <?php comments_template(); ?>

    Thread Starter amanonline

    (@amanonline)

    Thanks a lot Samuel for replying. But its not working.
    Any other suggestion?

    <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>

    Try this.

    Thread Starter amanonline

    (@amanonline)

    Great solution Chinmoy29. Its working. Thanks a lot.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Comments link on the posts at the home page?’ is closed to new replies.