Show tags of latest post on home page
-
Hello,
I’m trying to show the latest post on my home page, but I need some help with the tags.
Here’s the code so far:<?php $last_posts = get_posts('numberposts=5'); if( $last_posts ) foreach( $last_posts as $last_post ) { echo '<a>ID).'">'.$last_post->post_title.'</a>'; echo '<a>ID).'">'.$last_post->post_content.'</a>'; echo '<a>ID).'">'.$last_post->post_date.'</a>'; } ?>
Any trick to show the tags for each article, too?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Show tags of latest post on home page’ is closed to new replies.