Hi there,
I am trying to pull excerpts and custom fields from specific posts, I have tried using post titles and post id but I am only succeeding in pulling every single post information. For example I have this code trying to pull just the title for post with id 182
<?php $map = new WP_Query();$map->query('post_id=182'); ?><?php while ($map->have_posts()) : $map->the_post(); ?><?php the_title(); ?><?php endwhile; ?>
It pulls that title first but then pulls the title of every other post as well. Can someone please explain where I went wrong?