Insert comment template inside loop

I need to insert a comment template inside a message loop. My client does not want to click on the message for comments, he wants to comment on the list of messages. How to do it in wordpress?

thank

+3
source share
2 answers

The WordPress Template Editor allows you to modify these files through the administration user interface. You just need to copy the lines of code from the comment template into the post loop. If you tried this and have problems, update your question with a specific problem.

0
source

you should use something like this:

<?php
  global $withcomments;
  $withcomments = true;
  comments_template( '', true );
?>

inside the message loop.

+2
source

All Articles