我有一个名为'产品'的自定义帖子。使用元键作为'优先级'。我在帖子中添加了很多草稿。现在,在管理员中我想对帖子进行排序,以便产品列表按用户排序。 我尝试了很多插件,但没有满足我的要求。我想只排序那些发布和检查优先级的帖子。 这可能吗? 欢迎任何帮助/建议。 提前谢谢。
答案 0 :(得分:0)
请尝试以下代码
$args = array(
'post_type' => 'your-post-type',
'posts_per_page' => 1,
'post_status' => array('publish'),
'meta_key' => 'your key name',//prioritized
'meta_value' => 'your key value'
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
the_title();
endwhile;
endif;
答案 1 :(得分:0)
您可以按this plugin显示作者和自定义字段列。我不确定你是否可以按这个字段对行进行排序。