Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • If you want your posts to be sorted by tags, like

    Tag 1
    – post 1
    – post 2
    – etc

    Tag 2
    – post 1
    – post 2

    You can use Multiple Loops.

    Create a page template based on ‘archive.php’ and call it e.g. ‘tag-archive.php’

    Put

    <?php
    /*
    Template Name: Tag list
    */
    ?>

    in your first lines.

    In this template you create a loop
    Rewind your posts
    Create the second loop
    Upload the template in your theme directory
    Create a page based on this new template

    Example:

    <?php } ?>
    <?php query_posts('tag=fun'); ?>
    <div class="posttitle"><h2>These posts were fun!</h2></div>
    
    <?php while (have_posts()) : the_post(); ?>
    
    <!-- do your stuff -->
    
    <?php endwhile; ?>
    
    <?php rewind_posts(); ?>
    
    <?php query_posts('tag=pleasure'); ?>
    <div class="posttitle"><h2>All Pleasure posts!</h2></div>
    <?php while (have_posts()) : the_post(); ?>
    
    <!-- do the stuff again -->
    
    <?php endwhile; ?>
    Thread Starter arnov

    (@arnov)

    In PHPlist I get an error message ‘Parsing failed’. My other feeds (all static XML) don’t have this problem. Already left a note on PHPlist forum (and a helpdesk ticket), but didn’t get any response yet.

    Forum: Plugins
    In reply to: Convert RSS feed to XML
    arnov

    (@arnov)

    Hi Gable,

    did you find your solution? I have the same question.

    Arno

Viewing 3 replies - 1 through 3 (of 3 total)