Yes I've tried <?php the_tags(); ?> Code (markup): Nothing shows up on the home page. It shows on the single post, though. Halp. What code do I put to get the post's tag(s) and show it/them on the front page (preferably at the top before the post title)?
have you tried: <?php while(have_posts()) : the_post() ?> <?php the_tags(); ?> <?php endwhile; ?> PHP: