• Is there a possibility to dynamically display all forum titles with a specific tag on a ‘page’ in wordpress?

    So I’d have <div>code</div>, and when you open the website, instead of code you see for example Blog Entry 1, Blog Entry 3 (and each with a link to the actual blog entry).

    Thanks a lot for your help!

    greetz, david

Viewing 1 replies (of 1 total)
  • <?php
    query_posts('tag=page');
    if(have_posts()) :
      while(have_posts()) :
        the_post();
        ?>
        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
        <?php
      endwhile;
    else :
      ?>
      <p>No posts.</p>
      <?php
    endif;
    wp_reset_query();
    ?>
Viewing 1 replies (of 1 total)

The topic ‘Blog TAGs in HTML’ is closed to new replies.