go41

the info you need to know


von blogdot admin
2 Kommentare

did you realize that in the latest version of the WordPress plugin Simple Tags the 'auto link tags into post content' is not working? The solution how to repair is to edit your plugins/simple-tags/inc/client.php Open this file with a text…


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…