Display comments from specific image to a page
-
Hi I can’t figure out how to display comments from an image to a page on my website that is outside the blog.
For example I want to show only the comments for: https://www.mysite.com/blog/?attachment_id=62
I know how to only show comments for a post, See below). I think I just need to tweak out the query but I am not sure to what?
Thanks
<?php include('blog/wp-blog-header.php'); ?> <?php // retrieve one post with an ID of 1 query_posts('p=1'); // the Loop while (have_posts()) : the_post(); $withcomments = true; comments_template(); // displays the comments endwhile; ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Display comments from specific image to a page’ is closed to new replies.