go41

the info you need to know


von Joern
Keine Kommentare

Actually Arthemia has this function built in already. In your index.php under the div id="front-list" you have:Code:<?php$page = (get_query_var('paged')) ? get_query_var('paged') : 1;query_posts("cat=-27,-28&paged=$page&posts_per_page=5"); ?>The part cat=-27,-28 means posts from the two categories with the ID 27 and ID 28 will…


von Joern
Keine Kommentare

you could duplicate the pages list in footer.php by copy all ul /ul stuff from header.php to footer.phpPut it below the line div id="front-popular" above div id="recentpost" like this:Code:<div id="front-popular" class="clearfloat"><ul id="page-bar" class="left clearfloat"><li><a href="<?php echo get_option('home'); ?>/">Home</a></li><?php wp_list_pages('sort_column=menu_order&title_li='); ?></ul><div…