标签: 随机文章

wordpress主题–随机文章代码

06.30.2009
knowledge | wordpress
点击量:99 次
评论(0)
?Download download.txt
1
2
3
4
5
6
7
8
        < ?php
$rand_posts = get_posts('numberposts=8&orderby=rand');
foreach( $rand_posts as $post ) :
?>
        <li><a href="<?php the_permalink(); ?>">
          < ?php the_title(); ?>
          </a></li>
        < ?php endforeach; ?>