2009年8月22日星期六

逐末网志

逐末网志


Wordpress不用插件调用随机文章

Posted: 22 Aug 2009 04:39 AM PDT

对于Wordpress插件我奉行越少越好的原则,能用代码解决的我绝不会去安装插件,插件装大多了会拖慢速度的,我现在尽量保持插件数量在12个以内。

使用过程中发现Google的friend connect很拖慢博客的速度,忍痛删除掉了,空出来的地方限制随机文章好了,原来显示随机文章是使用的某个插件,现在发现可以直接用代码解决了,如果你想了解其他常用的代码,如最新文章、热门文章等等可以去参考幸福收藏夹

Wordpress不用插件调用随机文章代码

1 2 3 4 5 6 7 8 
<?php $rand_posts = get_posts('numberposts=10&orderby=rand'); foreach( $rand_posts as $post ) : ?> <li><a href="&lt;?php the_permalink(); ?&gt;" title="<?php the_title(); ?>"> <?php the_title(); ?> </a></li> <?php endforeach; ?>

© jomor for 逐末网志, 2009. | 文章链接 | 没有评论 |
Post tags: ,

相关日志

没有评论:

发表评论