• spackletoe

    (@spackletoe)


    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)
  • doc4

    (@doc4)

    spackletoe,

    I have come across this situation before as well. I would be interested to know if you find a way to make this work.

Viewing 1 replies (of 1 total)
  • The topic ‘Include comments from a certain page/post on a different page’ is closed to new replies.