go41

the info you need to know


von Joern
Keine Kommentare

Another piece of code to get 4 random old post listed in your sidebar.php of wordpress is this:Code:<h3>Oldies but Goodies</h3><ul><?php global $wp_query; $rndposts = get_posts('numberposts=4&offset=15&orderby=rand()'); foreach($rndposts as $post) : setup_postdata($post); ?><li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li><?php endforeach; ?></ul>put…