Need help adding list of posts by TAG….
-
I am trying to display an unordered list of posts by TAG, not category. On one of my sites, I have a list by CATEGORY as follows:
<ul> <?php $posts=get_posts('cat=13&showposts=50'); if ($posts) { foreach($posts as $post) { setup_postdata($post); printf ("<li><a href=\"%s\">%s</a></li>", get_permalink($post->ID),$post->post_title); ?> <?php } } ?> </ul>
Is it possible to modify this code to display a list of posts by TAG instead of CATEGORY?
Thanks for any help!
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Need help adding list of posts by TAG….’ is closed to new replies.