Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

insert comments template inside a loop

Tags:

php

wordpress

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

like image 571
rizidoro Avatar asked Dec 21 '25 22:12

rizidoro


1 Answers

you should use something like that:

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

inside the loop of posts.

like image 70
Mauro Mascia Avatar answered Dec 23 '25 13:12

Mauro Mascia