Include comments from a certain page/post on a different page
-
I’m trying to include comments from a certain page into another page. How do I do this? I tried this, but it’s not working:
<?php // retrieve one post with an ID of 101 query_posts('p=101'); // the Loop while (have_posts()) : the_post(); $withcomments = true; comments_template(); // displays the comments endwhile; ?>
I’m trying to include comments, in ASC order, and keep the add a comment box there too if possible. The page I’m including this on will have comments turned off to avoid confusion.
OR….
I just need to know how to reverse the comment listing on JUST ONE PAGE.
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Include comments from a certain page/post on a different page’ is closed to new replies.