Hi InS0mN1aC,
Yes, probably the simplest way would be to create a custom template as described in this discussion, 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 -->
(@ins0mn1ac)
11 years, 4 months ago
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/