你想要的get_posts
不query_posts
. 仅当需要修改主查询时才使用后者。
类似这样的内容(在您想要的任何模板文件中):
<ul class="slider">
<?php
global $post;
$args = array( \'numberposts\' => 5, \'order\'=> \'ASC\', \'orderby\' => \'title\' );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :
setup_postdata($post);
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
冲洗、起泡,重复旋转木马的必要参数。