只查找带有图像的图库

时间:2013-07-29 23:18:42

标签: wordpress

Wordpress中是否有办法使用WP_Query并使用键_gallery_image_ids检索具有0个以上元数据的帖子/图库。

基本上我不想显示没有图像的图库。

1 个答案:

答案 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 +