Hi everybody. I am using the following loop to show featured posts. In this loop, everything goes right expect the tags; they do not show at all. What is the matter? Thanks!
<?php $featured = new WP_Query();
$featured->query('category_name=featured&showposts=4');
while($featured->have_posts()) : $featured->the_post();
?>
<img src="<?php echo get_post_meta($post->ID, 'Featured_Image', true) ?>" alt="" class="featured_img" />
<strong><div class="tags"><?php the_tags();?></div></strong>
<h2 class="featured_title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php echo get_post_meta($post->ID, 'Featured_Title', true) ?></a></h2>
<?php endwhile; ?>