Reputation: 13418
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
Reputation: 445
you should use something like that:
<?php
global $withcomments;
$withcomments = true;
comments_template( '', true );
?>
inside the loop of posts.
Upvotes: 2
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