arnov
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: show only posts for a tagIf you want your posts to be sorted by tags, like
Tag 1
– post 1
– post 2
– etcTag 2
– post 1
– post 2You 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 templateExample:
<?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; ?>Forum: Fixing WordPress
In reply to: Converting feed to static XML fileIn 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 XMLHi Gable,
did you find your solution? I have the same question.
Arno
Viewing 3 replies - 1 through 3 (of 3 total)