使用视觉组合插件查询媒体库中带有特定标签的所有图像

时间:2019-01-14 22:41:21

标签: wordpress query-string taxonomy

简介:

我正在开发一个wordpress网站,并希望使用Visual Portfolio插件(https://wordpress.org/plugins/visual-portfolio/)。这个插件使我能够显示帖子库。它还使我能够使用自定义的查询字符串

查询帖子。

field in the visual portfolio plugin where I add in a custom query

我想做什么:

我希望可视化产品组合插件查询我的媒体库中所有类别为gallery的图像。

我所做的事情:

我已经使用F4媒体分类法插件(https://wordpress.org/plugins/f4-media-taxonomies/)来给图像分类。根据该插件的说明,我向我的functions.php添加了以下代码以启用分类法category

add_action('init', function() {
    register_taxonomy_for_object_type('category', 'attachment');
});

下一步,在创建我的Visual Portfolio库的页面上(上面的截图),我添加以下查询字符串:

post_type=attachment&post_mime_type=image&post_status=inherit&tax_query[0]taxonomy=category&tax_query[1]term=gallery&tax_query[2]field=slug

会发生什么:

Visual Portfolio插件仅显示我的媒体库中的所有图像,而不仅仅是显示类别为gallery的图像。

有什么想法吗?谢谢

0 个答案:

没有答案