WP_Query 是你问题的解决方案。
查看可用的parameters. 只需在页面模板中添加一个查询和循环,就可以了。
例如:。
$args = array(
\'category_name\' => \'winter\',
\'orderby\' => \'rand\',
\'posts_per_page\' => 10
);
$query = new WP_Query( $args );
循环从这里开始:
<?php if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
结束于此:
<?php endwhile; else: ?>
<p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p>
<?php endif; ?>