Displaying the Wordpress 'Comments Template' outside the 'loop' Displaying the Wordpress 'Comments Template' outside the 'loop' wordpress wordpress

Displaying the Wordpress 'Comments Template' outside the 'loop'


It is easy (I hope I understood you correctly). Just after the the_content() call, setup the $withcomments variable (global) and call comments_template():

the_content();global $withcomments;$withcomments = 1;comments_template( 'comments.php', true );