go41

the info you need to know


von Joern
Keine Kommentare

to get the author displayed you have to add: <?php the_author(); ?>in arthemia index.php (main page) best in div class="meta"Code:<div class="meta">[<?php the_time('j M Y') ?> | <?php comments_popup_link('No Comment', 'One Comment', '% Comments');?> | <?php if(function_exists('the_views')) { the_views(); } ?>]</div>for example like this:Code:<div class="meta">[<?php the_time('j M Y') ?> by <?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…