您可以在任何主题文件中使用以下代码段,也可以创建新的页面模板。在使用此代码之前,不要忘记替换要从中获取文章的类别ID。
<?php
// display random post from specific categories
$args = array(
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'cat\' => \'2, 6, 17, 38\', // category IDs
\'orderby\' => \'rand\',
\'posts_per_page\' => \'1\', // get 1 post only
\'ignore_sticky_posts\' => 1,
);
$my_query = new WP_Query( $args );
// the loop
if ( $my_query->have_posts() ) :
while ( $my_query->have_posts() ) : $my_query->the_post();
// display article
get_template_part( \'content\', \'featured\' );
endwhile;
endif;
wp_reset_postdata();
&燃气轮机;