我的代码应该显示元键“slider”不为空的流行帖子。有人知道为什么它不起作用吗?
问题是,这段代码只显示带有滑块图像的帖子。但它忽略了排序。
$values = array(
\'numberposts\' => 10,
\'orderby\' => \'meta_value_num\',
\'meta_key\' => \'count_views\',
\'meta_query\' => array(
array(
\'key\' => \'slider\',
\'compare\' => \'!=\',
\'value\' => \'\'
)
)
);
$my_posts = get_posts( $values );
global $post;
foreach( $my_posts as $post ) : setup_postdata($post);
the_title();
endforeach;
wp_reset_postdata();