视频教程
使用get_posts函数
<ul>
<?php
// 获取最新文章
$args = array( ‘numberposts’ => 3, ‘orderby’ => ‘ID’,’order’=>’DESC’, ‘post_status’ => ‘publish’ );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<li><p class=”limit” style=”width: 75%”><a href=”<?php the_permalink();?>” target=”_blank”><?php the_title()?></a></p><span style=”float:right; font-size: 10px;”><?php the_views();?>人 阅读过</span></li>
<?php endforeach; wp_reset_query();?>
</ul>
更多关于 get_posts() 函数的使用及参数请参考:WordPress 内置函数 get_posts() 详解