rizidoro
rizidoro

Reputation: 13418

insert comments template inside a loop

i need to insert the comments template inside the loop of posts. My client don't wanna click on post to comment, he wanna comment os the posts list. How can I do this on wordpress?

thanks

Upvotes: 3

Views: 1013

Answers (2)

Mauro Mascia
Mauro Mascia

Reputation: 445

you should use something like that:

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

inside the loop of posts.

Upvotes: 2

AJ.
AJ.

Reputation: 28174

The WordPress template editor allows you to modify these files through the administration UI. You simply need to copy the lines of code from the comments template into the post loop. If you've tried this and are having problems, please update your question with the specific issue.

Upvotes: 0

Related Questions