go41

the info you need to know


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

To list pages in WordPress you normally take this: <?php wp_list_pages(); ?> But how to display some pages with the_content or the_excerpt? I didn't find a way to query specified pages by page_id and run a foreach loop, so we are going to get the pages one by one in…