Wordpress中是否有办法使用WP_Query并使用键_gallery_image_ids检索具有0个以上元数据的帖子/图库。
基本上我不想显示没有图像的图库。
答案 0 :(得分:1)
查看自定义字段参数:
http://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters
应该可以做一些事情:
$options = array(
'p' => $post_id,
'meta_query' => array(
'key' => '_gallery_image_ids',
'compare' => 'EXISTS'
);
);
$query = new WP_Query($options);
注意:需要Wordpress 3.5 +