$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>custom taxonomy - Query all images with certain tag in media library using visual portfolio plugin|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

custom taxonomy - Query all images with certain tag in media library using visual portfolio plugin

matteradmin9PV0评论

Introduction:

I am developing a wordpress website and want to use the Visual Portfolio plugin (/). This plugin gives me the ability to display a gallery of posts. It also gives me the ability query my posts with a custom query string:

What I want to do:

I want the visual portfolio plugin to query all images in my media library with the category gallery.

What I have done:

I have used the F4 Media Taxonomies plugin (/) to give categories to my images. According to that plugin's directions, I have added the following code to my functions.php to enable the taxonomy category:

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

Next, on the page where I create my Visual Portfolio gallery (screenshot above), I add in the following query string:

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

What happens:

The Visual Portfolio plugin simply displays all the images in my media library, not just images with category gallery.

Any ideas? Thanks

Post a comment

comment list (0)

  1. No comments so far