I’m having problems getting all related posts of the current viewing tag. Does anyone know how you can do this dynamic? I want to create a own kind of ‘archive’ page for this.

3 Answers
Ok .. after searching for a while I figured out what I was doing wrong. I wasn’t including custom post types in the loop. I ended up constantly with ‘not found’.
Whats the solution:
query_posts( array( 'post_type' => 'blog', 'showposts' => 3, 'orderby' => 'rand') ); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
And it queues all posts with the current viewing tag!
Special thanks to Sven and Kaiser!