Title: Show comments bellow post
Last modified: August 22, 2016

---

# Show comments bellow post

 *  [InS0mN1aC](https://wordpress.org/support/users/ins0mn1ac/)
 * (@ins0mn1ac)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/show-comments-bellow-post/)
 * Hello,
    I am using your posts in page plugin and I find it very nice and useful!
   I would like to ask if there is a way to show the post’s comments bellow each
   post and a small text field to add a new comment without having to click on the
   post.
 * Thank you very much for your wonderful plugin!
 * [https://wordpress.org/plugins/posts-in-page/](https://wordpress.org/plugins/posts-in-page/)

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [Patrick Jackson](https://wordpress.org/support/users/pjackson1972/)
 * (@pjackson1972)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/show-comments-bellow-post/#post-5682493)
 * Hi InS0mN1aC,
 * Yes, probably the simplest way would be to create a custom template as described
   in [this discussion](https://wordpress.org/support/topic/how-to-add-featured-image?replies=27),
   and add the `comments_template()` function where you want to add the comments.
 * For example, you might replace the existing comments link…
 *     ```
       </span>
       			<span class="meta-sep">|</span>
       		<?php endif; ?>
       		<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'posts-in-page' ), __( '1 Comment', 'posts-in-page' ), __( '% Comments', 'posts-in-page' ) ); ?></span>
       		<?php edit_post_link( __( 'Edit', 'posts-in-page' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
       	</div>
       </div>
       <!-- // Post Wrap End -->
       ```
   
 * … with comments_template()…
 *     ```
       </span>
       			<span class="meta-sep">|</span>
       		<?php endif; ?>
   
       		<?php comments_template(); ?>
   
       		<?php edit_post_link( __( 'Edit', 'posts-in-page' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
       	</div>
       </div>
       <!-- // Post Wrap End -->
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Show comments bellow post’ is closed to new replies.

 * ![](https://ps.w.org/posts-in-page/assets/icon-256x256.png?rev=1596190)
 * [Posts in Page](https://wordpress.org/plugins/posts-in-page/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/posts-in-page/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/posts-in-page/)
 * [Active Topics](https://wordpress.org/support/plugin/posts-in-page/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/posts-in-page/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/posts-in-page/reviews/)

## Tags

 * [Comments](https://wordpress.org/support/topic-tag/comments/)
 * [show](https://wordpress.org/support/topic-tag/show/)

 * 1 reply
 * 2 participants
 * Last reply from: [Patrick Jackson](https://wordpress.org/support/users/pjackson1972/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/show-comments-bellow-post/#post-5682493)
 * Status: not resolved