Forums

Listing posts according to tags (3 posts)

  1. ThorHammer
    Member
    Posted 1 month 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
    Member
    Posted 1 month ago #

  3. ThorHammer
    Member
    Posted 1 month 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?

Reply

You must log in to post.

About this Topic