I've read this topic through and tried out a few things for my tag page, but it doesn't really work out.
This is my code:
<?php get_header(); ?>
<div id="wp_content">
<div id="post_entry">
<?php if (have_posts()) : ?>
<?php
$current_tag = single_tag_title("", false);
query_posts(array(
'cat'=>'8',
'tag_slug__and'=>array($current_tag),
) );
?><?php while (have_posts()) : the_post(); ?>
<div class="post_meta" id="post-<?php the_ID(); ?>">
<div class="post_title">
<div class="post_permalink">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<span class="author">Posted By: <?php the_author_posts_link(); ?> <?php edit_post_link(__(' Edit'), '|', ''); ?></span>
<span class="category">Published in <?php the_category(', ') ?></span>
<?php if(function_exists("UTW_ShowTagsForCurrentPost")) : ?>
<span class="category"><?php UTW_ShowTagsForCurrentPost("commalist", array('last'=>' and %taglink%', 'first'=>'tag in %taglink%',)) ?></span>
<?php endif; ?>
</div>
<div class="post_date"><p class="days"><?php the_time('j'); ?></p><p class="month"><?php the_time('M'); ?></p></div>
</div>
<div class="post_content"><?php the_content("<br />" . "continue reading " . """ . the_title('', '', false) . """); ?></div>
<div class="post_commented"><a href="<?php comments_link(); ?>"><?php comments_number('no comment','1 comment','% comments'); ?></a></div>
</div>
<div class="clearfixed"></div>
<?php endwhile; ?>
<div class="post_updates"><?php if(function_exists('wp_pagenavi')): ?> <?php wp_pagenavi(); ?><?php else : ?><?php posts_nav_link(); ?>
<?php endif; ?></div>
<?php else: ?>
<h3>Sorry the tags had been deleted</h3>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_optional_sidebar(); ?>
<?php get_footer(); ?>
I'm currently using a plugin to exclude certain categories from my pages, but what I actually want is to show all posts posted within one category that only have a link in them to display them above the other normal blogposts with full content, permalinks to the stories etc. When I try showing only a certain category it simply doesn't work and shows all posts with that tag.
Is there a way to show one block with only the contents of the first posts from one category and underneath it other posts from the same tag from another category? Also, I'm using Simple Tags, could that be a problem?