I don’t have enough rep to comment, but what does your actual query look like?
Edit: I haven’t been able to test it, but I think this will work
$args = array(
'post_type' => 'slider',
'meta_key' => '_thumbnail_id', // only pull sliders with images
'tax_query' => array(
array(
'taxonomy' => 'slideshow',
'field' => 'slug',
'terms' => 'homeslide',
'operator' => 'IN'
)
)
)
$query = new WP_Query( $args);
Then follow the normal loop
Related Posts:
- How to modify a taxonomy that’s already registered
- Remove taxonomy base or term from url
- Bulk term assignment for attachment taxonomies
- Why is my working Custom Taxonomy not in get_taxonomies array?
- Custom taxonomy listing page when no term set (all terms)
- Custom order of terms for custom taxonomy in admin and website
- RSS Feed for posts containing any term from a taxonomy
- Taxonomy slug by term ID
- How to enable hierarchical permalinks for hierarchical taxonomies
- Exclude Child Term Posts from Parent Term Archive
- Create taxonomy with meta term using the WP Rest Api
- Use custom posts as taxonomy term meta replacement?
- Remove description in custom taxonomy edit screen
- Taxonomies not appearing in columns on dashboard
- How to link categories to custom taxonomy terms?
- Check if post has a specific post type
- List taxonomy / category count showing list published posts only
- Taxonomy landing pages
- Custom taxonomy term in WooCommerce product permalink
- Save Filter for Taxonomies
- Change URL structure of subcategory archive pages
- Modify main loop in taxonomy archive page
- Displaying a custom taxonomy term’s name & description
- Allow only 1 instance of each term in each custom taxonomy
- Get terms from posts submitted within a certain time
- Storing an array using update_metadata [closed]
- Display Terms for all posts in Current Archive or Query
- How do I sort posts by custom taxonomy?
- Display post taxonomies tree
- How can I add buttons to a custom column in the taxonomy table?
- WP_Query on custom taxonomy works fine but fails if run through wp_ajax_
- Some Custom Taxonomy modified dates return false
- JSON API – search by custom taxonomy
- Advanced Query Logic With Multiple Taxonomies
- Remove alphabetical order from wordpress categories
- 404 error- issues with pages after adding custom rules for posts
- Filter WooCommerce admin products list by a custom taxonomy
- Wrapping result of the_terms in a span with a class of the term name
- Pull in taxonomy links using get_the_terms?
- Adding content to a taxonomy metabox
- Getting values of a custom taxonomy dropdown
- I am trying to display information from a custom table from my wordpress users pages
- Save custom taxonomy data in different table not in wp_options for my own plugin
- Retrieve Custom Taxonomies according to posts selected
- How does WordPress Parent-Child Taxonomy actually Works?
- Custom taxonomy archive shows 404 error
- Different single page templates for taxonomies
- Can I use OR relation for one item when calling tax_query from WP_Query and use AND for the rest?
- Can’t set custom taxonomy terms via custom form
- get_terms not returning any custom taxonomies
- I don’t need ‘view’ page for my custom taxonomy
- WordPress implode & wp_insert_post question
- If Custom Taxonomy
- Use the same taxonomy twice on the same post type?
- When filtering query on custom taxonomy; main menu dissapears
- How to write sql query to get the posts from a custom taxonomy term name
- How to do a particular wp_query taxonomy search
- Get only immediate children (and not grandchildren) of a hierarchical custom taxonomy term
- How to group all terms children’s in custom taxonomy?
- How to display a custom taxonomy without a link?
- Get post count for current custom taxonomy
- Build filter for post-type + multi taxonomies + multi terms
- Custom taxonomies mixed into categories and tags in Post edit page
- get_term_by works but get_terms doesn’t?
- How to get product order by two custom taxonomy in wordpress
- How can i add custom field inside custom post taxonomy?
- Custom Taxonomy Not Saving in Front End Post
- How to list Custom Taxonomy
- How to output taxonomy term (incl. link to archive) on author.php?
- Featured Images for Tags?
- Taxonomize taxonomy terms?
- displaying posts from a custom post type tags
- Showing relevant categories on custom taxonomy template
- Creating a drop-down and filter button for two custom taxonomies assigned to a custom post type
- How to use custom slug and custom templates for custom taxonomy?
- Conditional if is single and part of the custom taxonomy
- how to show product custom taxonomies in woocommerce rest api
- Auto add custom taxonomy to permalink when save
- WP Tax query & order by tax query not working
- Show latest used taxonomy in homepage
- Link a page from admin to a custom taxonomy
- What’s the url queryvar for a taxnomy archive?
- set_object_terms for custom taxonomy in custom post type – not working
- Get all users attached to a taxonomy
- List active taxonomy terms
- Permalink Rewrite to include Custom Taxonomy Term
- How do you move custom fields to custom taxonomies using WP Queries
- Where is defined a custom register_taxonomy? [closed]
- Differentiate Parent & Child of Custom Taxonomy
- Listing all selected terms for custom taxonomies on a post
- Multiple Taxonomy in URL/Query – No Custom Post Type
- Calling Custom Taxonomy Dropdown in Form
- Displaying Custom Taxonomy List Posts By Slug?
- Show different sidebar on taxonomy pages when a default is set
- Taxonomy Extra Meta [duplicate]
- How can I get parent term from a child term
- Custom Taxonomy – Archive for the whole Custom Taxonomy (and not just single term)?
- get_terms() – unexpected ‘=>’ (T_DOUBLE_ARROW) error
- ACF Display Taxonomy Image Field
- Guest author – URL, base and custom taxonomy – working but unstable