go41

the info you need to know


von Joern
Keine Kommentare

Can anyone advise the code I need, to have a page, that appears with the title of each category, and then list the posts contained withing the category, then another category with it's post etc..So it looks a bit like this...TITLE OF CATEGORY APOST 1 CATEGORY APOST 2 CATEGORY ATITLE…


von Joern
Keine Kommentare

not easy to explain, I would insert a new query before the one you have already, try this:in index.php look for:div id="bottom" class="clearfloat"div id="front-list"and make place just below this.now insert the following code BEFORE this..php if(is_paged()) { ....span class="breadcrumbs"......Code:<!-- query for posts from two categories on first page only --><?php…


von Joern
Keine Kommentare

Another way to shorten the excerpt would be:<?php $shortex = substr(get_the_excerpt(), 0, 170);echo $shortex; echo "rn"; ?>as a replacement for the_excerpt, the last number above is the number of characters to display.Even one more:by putting the function 'string_limit_words' in your functions.php you could call this function from anywhere in your…