Title: Gallery shortcode &#8211; source taxonomy
Last modified: September 7, 2021

---

# Gallery shortcode – source taxonomy

 *  Resolved [Marie-Aude](https://wordpress.org/support/users/marie-aude/)
 * (@marie-aude)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/gallery-shortcode-source-taxonomy/)
 * Hello
 * when the source is “taxonomy”, even if you have media taged with the specific
   term, the plugin returns an error “No media found”.
 * It’s because media status is always “inherit” and not included in the “any” (“
   any” applies only to posts, pages, etc…
    So I added a line in the file includes/
   function-galleries.php
 *     ```
       		$query['post_type'] = 'any';
                       // -> new line
                       $query['post_status'] = array( 'inherit', 'any' ) ;
       ```
   
 * and it works.
 * Can you add that to the next update please ?

Viewing 1 replies (of 1 total)

 *  Thread Starter [Marie-Aude](https://wordpress.org/support/users/marie-aude/)
 * (@marie-aude)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/gallery-shortcode-source-taxonomy/#post-15000031)
 * The bug is not fixed in the latest version.
 * `$query['post_status'] = 'any'`
    does not include posts with status inherit and
   therefore there is no image.
 * This is because
 * > ‘any‘ – retrieves any type except revisions and types with ‘exclude_from_search’
   > set to true.
 * Attachment are excluded from search, by default.
 * [https://developer.wordpress.org/reference/classes/wp_query/#post-type-parameters](https://developer.wordpress.org/reference/classes/wp_query/#post-type-parameters)

Viewing 1 replies (of 1 total)

The topic ‘Gallery shortcode – source taxonomy’ is closed to new replies.

 * ![](https://ps.w.org/shortcodes-ultimate/assets/icon-256x256.gif?rev=2547563)
 * [Shortcodes Ultimate - Content Elements](https://wordpress.org/plugins/shortcodes-ultimate/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/shortcodes-ultimate/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/shortcodes-ultimate/)
 * [Active Topics](https://wordpress.org/support/plugin/shortcodes-ultimate/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/shortcodes-ultimate/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/shortcodes-ultimate/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [Marie-Aude](https://wordpress.org/support/users/marie-aude/)
 * Last activity: [4 years, 7 months ago](https://wordpress.org/support/topic/gallery-shortcode-source-taxonomy/#post-15000031)
 * Status: resolved