I’d like to list each gallery as a click-able link to that gallery. I tried querying just the post type, but it seems to not work properly… suggestions? This is my code
'ims_gallery',
'showposts' => '10');
$wp_query->query ($args);
?>
have_posts() ) : $wp_query->the_post(); ?>
<a href="">
It works great on any page that isn’t the gallery, but if I use that code in the sidebar on the actual gallery page, the gallery doesn’t show up…