I wouldn’t recommend using a taxonomy slug that coincides with the public query variables, like title.
The title query variable was introduced in 4.4 so I think that could explain your problems.
Check out this part of the WP_Query class:
if ( '' !== $q['title'] ) {
$where .= $wpdb->prepare(
" AND $wpdb->posts.post_title = %s",
stripslashes( $q['title'] )
);
}
So when we use for example:
example.tld/?title=test
what should WordPress do here? Is it a taxonomy query or title search?
So I would recommend prefixing the custom taxonomy slug, e.g.
gary_title
to avoid possible name collisions.
Update:
Thanks to @ocean90 for pointing out that this is a bug, that will be fixed in 4.4.1
Related Posts:
- WordPress tax_query “and” operator not functioning as desired
- How to add taxonomy filter on the query fly?
- Display posts the match taxonomy term linked from wp_list_categoies?
- Custom archive page based on array of categories and tags
- Select posts wich has no relationship in custom taxonomy
- List taxonomy terms plus their latest post ordered by post date
- Querying by taxonomy vs Querying by Custom fields Speed Comparison
- Filter and list posts of a custom taxonomy
- How to show only one post for each categories of taxonomy of custom post that contains a specific custom field
- tax_query shows no results if nothing is selected
- How to Modify Taxonomy Archive Page with Search Parameter?
- Get array of current post term ID’s
- Setup of taxonomy term template pages
- Display link to taxonomy archive only if it has posts with certain custom field values
- How to do a query on custom taxonomies that is uncategorised?
- WP_Query, tax_query and term_meta: How to?
- Order taxonomy terms in alphabetical order
- Query Custom Post Type Order By Taxonomy Field
- Query post from all category with same tag on 1 pages
- Function get_queried_object() return NULL in custom taxonomy
- Getting Taxonomy inside WP_Query Loop
- 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
- Query custom post type by custom taxonomy (category slug)
- WordPress Pagination changes my template
- Show posts from a custom taxonomy on a page
- WP_Query ignoring tax_query when is_singular
- How do I exclude the lowest level terms in a taxonomy?
- wp_query for multiple cities (multiple values in a metabox)
- 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?
- Search form not working with custom query?
- Post loop for all taxonomy terms
- Display custom tags on pages that have a specific page parent
- wp_query args adding muitiple tax_querys
- find posts that don’t have a custom taxonomy
- Custom taxonomy.php not working
- WP_Query for a taxonomy with different taxonomy types
- get all posts associated with a custom taxonomy
- How to set an alternate posts_per_page value for default queries in different templates
- How to add custom meta to ‘pre_get_terms’?
- Tax Query only returns for the first of several terms
- Can’t fetch Custom Post Type Data through Custom Query
- get term id from term name
- WP Job Manager plugin – Listing only the twelve job categories on frontpage order by jobs they have
- 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
- inserting content of 1 Post to in another with a template hierarchy
- Check if a post has term inside loop
- Different Loop for tag pages?
- How to get posts by category and by choosing a taxonomy term?
- How to restrict search on a certain page to only return results against custom taxonomies?
- Query Taxonomy By Page Title
- get_the_terms has strange result since version 6.0
- How to display posts from custom post type category(custom Taxonomy) wise?
- wp-query and wp_get_post_terms on custom taxonomy archive page
- Why is my pagination /page/2 taking me to index.php?
- Show X taxonomies of the latest published posts
- How to _GET multiple value checkbox WP_Query in Custom Toxonomy / Custom Fields
- display ACF repater field in archive page
- Filter for each loop when WP_Query has no posts to show
- How do I stop the same post showing multiple times in a archive?
- Related categories order posts by category
- WordPress – Form does not filter the results of taxonomies
- 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!
- Show one post of each custom taxonomy
- Query WP Posts, then list the taxonomies from those posts
- Displaying Pages in Nav Sub-Menu with Specific Taxonomy Terms?
- Displaying posts from sub taxonomies only
- Taxonomy archive, categorised by other taxonomy, not hiding empty taxonomies
- How to define a custom hierarchy for terms?
- My entry results are not consistently alphabetized
- Letting wordpress decide what template and page to use based on condition
- Taxonomy Terms That Don’t Exist Display Results
- I cannot get tax_query in get_posts() to work with custom taxonomy
- How to create page that lists tags by initial letter?
- How can I get all the posts that are related with a specific taxonomy term?
- How to combine nested tax_query logic with other nested query logic?
- Query Top Set Custom Taxonomy In Given Timeperiod
- tax_query not working for taxonomy slug
- Custom query for tag and custom tag from 2 post type
- Custom loop – Isolating post meta output depending on current query taxonomy terms
- WP_Query to show post from a category OR custom field – Not 100% answered
- Hiding all posts/products/pages from a site based on a custom taxonomy/domain name
- Page displaying 1st post from a range of custom tax?
- WordPress WP_Query Array Custom search via taxonomies
- Passing query variables to a custom page template
- tax_query not working properly with get_posts
- Custom Taxonomy in custom REST API search
- taxonomy-{term}.php terms pagination returning 404 after a certain page
- Adding a language rule and displaying posts with a custom taxonomy term on its archive page
- WP_Query on custom taxonomy -> Location and Activity
- Filter on one post type with taxonimy and get other post type
- Include custom post type that matches taxonomy field in another custom post type
- Showing all posts of the current custom taxonomy on archive page
- has_term not returning anything