Forums

Listing posts according to tags (3 posts)

  1. ThorHammer
    Member
    Posted 2 years ago #

    I have one category for news articles, but different articles are sorted by special tags. How do I create separate listings of posts based upon their special tags?
    This did not work for me:

    <ul>
     <?php
     global $post;
     $myposts = get_posts('numberposts=5&offset=1&tag=thiskindof_news');
     foreach($myposts as $post) :
     ?>
        <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
     <?php endforeach; ?>
     </ul>
  2. esmi
    Theme Diva & Mod
    Posted 2 years ago #

  3. ThorHammer
    Member
    Posted 2 years ago #

    esmi, I know about this section of the codex, that's why I came as far as I did. But I can't get it to work. I just wonder what's wrong with the code I wrote above?

Topic Closed

This topic has been closed to new replies.

About this Topic