我刚刚简化了我的代码。使用“是”和“否”单选按钮添加一个名为“\\u特色”的自定义字段,并添加虚拟的5篇文章,从中将一篇文章的特色设置为“是”,然后使用下面的代码显示特色文章。
$args = array(
\'posts_per_page\' => 5,
\'post_status\' => \'publish\',
\'post_type\' => \'post\',
\'meta_query\' => array(
array(
\'key\' => \'_featured\',
\'value\' => \'yes\'
)
)
);
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo \'<ul>\';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo \'<li>\' . get_the_title() . \'</li>\';
}
echo \'</ul>\';
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
希望这有帮助!