There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
Put the code at the bottom of Style & edit CENTER COLUMN -> Content ABOVE the LOOP
i.e.
<?php query_posts('cat=12'); ?>
#3
Aug 13, 2009, 07:15 AM
Sakshin
66 posts · Aug 2009
Amsterdam, Netherlands
Helpfull, but if I want to have a different categorie on different static pages? Then I glue in the above code into the text area of each page with the corresponding cat nr.?
#4
Aug 13, 2009, 03:24 PM
Flynn
3,768 posts · Oct 2008
Munich, Germany
You're basically replicating what's already built into WP, no? A category page when clicked would list all posts filed in that category.
The code for doing this with query_posts regardless would be
<?php
if ( is_page('Page Title') ) query_posts('cat=12');
if ( is_page('Other Page Title') ) query_posts('cat=22');
if ( is_page('Yet Page Title') ) query_posts('cat=32');
if ( is_page('One More Page Title') ) query_posts('cat=42');
?>