<?php
$cat = get_query_var('cat');
$sticky=get_option('sticky_posts');
$args=array(
'post__in' => $sticky,
'category__in'=>array($cat)
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php the_time('m.d.y') ?> "><?php the_title(); ?>
<?php
the_content();
//this is necessary to show the tags
global $wp_query;
$wp_query->in_the_loop = true;
the_tags();
endwhile;
}
?>
There are currently 1 users browsing this thread. (0 members and 1 guests)