I looked at the source code for IssueM. I think the slug you are after is issuem_issue
However, there are two more taxonomies it registers: issuem_issue_categories and issuem_issue_tags
Edit
Try changing your args to:
$args = array(
'post_type' => 'article',
'tax_query' => array(
array(
'taxonomy' => 'issuem_issue',
'field' => 'slug',
'terms' => 'issue-one'
),
),
'posts_per_page' => -1
);
This should all articles with the issuem_issue taxonomy slugged ‘issue-one’ attached to it.
Related Posts:
- Display posts the match taxonomy term linked from wp_list_categoies?
- Filter and list posts of a custom taxonomy
- How to Modify Taxonomy Archive Page with Search Parameter?
- Display link to taxonomy archive only if it has posts with certain custom field values
- Order taxonomy terms in alphabetical order
- Function get_queried_object() return NULL in custom taxonomy
- Getting Taxonomy inside WP_Query Loop
- How do I exclude the lowest level terms in a taxonomy?
- Post loop for all taxonomy terms
- wp_query args adding muitiple tax_querys
- Custom taxonomy.php not working
- WP_Query for a taxonomy with different taxonomy types
- How to add custom meta to ‘pre_get_terms’?
- WP Job Manager plugin – Listing only the twelve job categories on frontpage order by jobs they have
- How to get posts by category and by choosing a taxonomy term?
- get_the_terms has strange result since version 6.0
- WordPress – Form does not filter the results of taxonomies
- Show one post of each custom taxonomy
- Taxonomy archive, categorised by other taxonomy, not hiding empty taxonomies
- How to define a custom hierarchy for terms?
- Taxonomy Terms That Don’t Exist Display Results
- How can I get all the posts that are related with a specific taxonomy term?
- tax_query not working properly with get_posts
- Displaying the category name of a custom post type
- Custom archive page based on array of categories and tags
- Move posts to top of WP_Query if in certain Taxonomy?
- How to get the parent’s taxonomy?
- Querying Multiple Custom Taxonomy Terms
- Querying by taxonomy vs Querying by Custom fields Speed Comparison
- tax_query shows no results if nothing is selected
- Get array of current post term ID’s
- How to add terms to my tax_query based off of the current post
- Setup of taxonomy term template pages
- Show Post Count of a Category
- How to do a query on custom taxonomies that is uncategorised?
- WP_Query, tax_query and term_meta: How to?
- How do I search inside specific taxonomies in WordPress
- Query Custom Post Type Order By Taxonomy Field
- Fetch taxonomies by custom post type id array
- Query post from all category with same tag on 1 pages
- Order posts by taxonomy count
- showing all search result in one template
- List custom taxonomy terms sharing posts with a term from a second custom taxonomy
- Get authors by term id or slug
- Show posts from a custom taxonomy on a page
- WP Query Args – Title or Taxonomy Value
- Slow queries on a huge database
- Search Query for multiple categories using ‘OR’ but having certain categories be ‘AND’
- WordPress query with items from more than one selfdefined taxonomy as `term` argument
- Query with relation and one without relation using multiple taxonomies?
- How to display an other custom post type in a different custom post type’s archive?
- Display custom tags on pages that have a specific page parent
- Automatically Query Parent Taxonomy
- find posts that don’t have a custom taxonomy
- How Can I Change The Tax Query For The Main Loop For Taxonomy Archives?
- get all posts associated with a custom taxonomy
- How to set an alternate posts_per_page value for default queries in different templates
- Variable not working in WP_Query
- Get posts from multiple tax terms
- How to Order a list of taxonomies? orderby?
- Tax Query only returns for the first of several terms
- Can’t fetch Custom Post Type Data through Custom Query
- One WP_Query that always shows 1 post from category X and 1 post from “not in category X”?
- How to print term name inside wp post loop
- Get posts in taxonomy randomly
- Loop posts based on permalink term
- Query Taxonomy By Page Title
- Get posts by category name
- Taxonomy.php how to show post only in current taxonomy with wp_query?
- Don’t repeat posts from children in parent taxonomy query
- Query Custom Post Type by Taxonomy
- Show multiple tax_query from 2 or more post_type in a single code
- How to display posts from custom post type category(custom Taxonomy) wise?
- Why is my pagination /page/2 taking me to index.php?
- Strange behaviour of hierarchical taxonomy archive
- How can I order a post query’s results based on the number of matching taxonomy terms?
- WP Query should show No Posts when tax_query $args taxonomies don’t have associated posts
- Only show tag with the same id as the post
- Filter for each loop when WP_Query has no posts to show
- How to use the Term Object from a custom select field in a query
- How do I stop the same post showing multiple times in a archive?
- wp_query with meta_query and tax_query
- Related categories order posts by category
- WP Query for all events prior to current date
- How to get taxonomy image attached to a Post Type WordPress
- list all post who have mutual taxonomy as current taxonomy!
- How to break up output of posts for different terms on same page?
- Custom Taxonomy – fields
- Displaying posts from sub taxonomies only
- taxquery taxonomy get terms
- pages shortcode filtering by category
- How to show terms from another taxonomy
- My entry results are not consistently alphabetized
- I cannot get tax_query in get_posts() to work with custom taxonomy
- Custom query for tag and custom tag from 2 post type
- Custom loop – Isolating post meta output depending on current query taxonomy terms
- Search format not matching taxonomy query
- Hiding all posts/products/pages from a site based on a custom taxonomy/domain name
- Multiple Orderby is not working right
- Three different queries on same page