go41

the info you need to know


von Joern
Keine Kommentare

in Arthemia the query for category Headline is like this:Code:<?php query_posts("showposts=1&category_name=Headline"); ?>If you know the ID of this category (here as sample ID=4) you could use:Code:<?php query_posts("showposts=1&cat=4"); ?>Coming to Featured section, normally like this:Code:<?php query_posts("showposts=4&category_name=Featured"); $i = 1; ?>this you…


von Joern
Keine Kommentare

this is correct as the upper part:</div><div id="bottom" class="clearfloat"><div id="front-list"><div id="middle"><img src="<?php echo ge....in the lower part you have in the script you give above:<?php } ?><?php if(is_paged()) { ?><div id="bottom" class="clearfloat"><?php } ?><div id="front-list"><?php$page = (ge.....the div id="front-list" should…


von Joern
Keine Kommentare

above you gave me your index.phpthis is wrong<?php } ?><div id="bottom" class="clearfloat"><div id="front-list"><?php if(is_paged()) { ?><div id="bottom" class="clearfloat"><?php } ?><?php$page = (get_query_var('paged')) ? get_query_var('paged') : 1;query_posts("cat=-27,-28&paged=$page&posts_per_page=5"); ?>it should have looked like this:<?php } ?><?php if(is_paged()) { ?><div id="bottom" class="clearfloat"><?php }…