To have the first code block to work on a secondary query, you’d need:
function customize_customtaxonomy_query ( $query ) {
$query->set('post_type', array('business') );
// return $query; // not necessary; actions do not return anything
}
add_action( 'pre_get_posts', 'customize_customtaxonomy_query' );
$q = new WP_Query($args);
And you should remove it afterwards so that it doesn’t interfere with other loops.
To have that filter work on the main query it needs to be applied before the main query runs, which means (usually) it needs to be in functions.php
or a plugin file.
However, if you are creating a secondary Loop (can’t tell if you are) then the filter looks like overkill. Just pass the arguments you want. Untested, but something like this:
$args = array_merge( $wp_query->query_vars, array( 'post_type' => 'business' ) );
$q = new WP_Query( $args );
That is a lot of guessing but I hope it helps.
Related Posts:
- Add category base to url in custom post type/taxonomy
- Display all posts in a custom post type, grouped by a custom taxonomy
- Ordering Posts List By Taxonomy Terms?
- Templates for Custom Post Types and Custom Taxonomies
- has_term or in_category for Custom Post Types
- WordPress Custom Post Type Category Page
- post count is wrong when using same taxonomy for 2 different CPT
- Issues when rewrite rules collide?
- Add links to post categories and taxonomies in wysiwyg link modal?
- Unable to save custom taxonomy terms in a custom-built metabox
- Archive page for taxonomy of custom post type
- CPT tax slug conflict with post type slug
- Custom post type archive with dynamic taxonomy filtering – is it possible
- Multiple Archive Pages for Custom Post Types AND Taxonomies
- Custom Taxonomy Breadcrumb Navigation
- Remove “-2” from a Toolset Types URL with the same post name
- Exclude current post when getting related post on custom post type and taxonomy
- Display Posts of a Category in Alphabetical Order (Custom Post Type)
- Is it possible to make tag archive page specific to Custom Post Type?
- Multiple portfolios with one custom post type?
- Custom Post Type and Taxonomy combination
- Custom post types, taxonomies, and permalinks
- How can I display my custom metaboxes on a custom post template?
- How to specify URLS for custom posts & taxonomies
- Taxonomy.php Not Showing Posts
- How to check the terms in single custom post type template
- Taxonomy Archive: Display only one post per term from separate custom taxonomy
- Archive for custom taxonomy lists all posts instead of current taxonomy
- Custom Post Type permalink shows wrong page: homepage/index.php
- using $wpdb to get custom post type with term
- Categories sorting
- WP_Query most viewed posts, in multiple Post Types, last 30 days, excluding a specific taxonomy term
- Allow user to set custom order to a list of custom taxonomies?
- Disable block with taxonomies at post page
- search also in taxonomy, tags and custom fields
- Custom Post Types, URL rewrite on multiple CPTs
- Sort and filter custom post type posts by custom taxonomy
- Terms showing up in object cache on unrelated pages
- Hierarchial Custom Post Types/Taxonomies
- Hierarchical permalinks for custom post type and taxonomy
- Custom post type pagination 404
- Best way to specify “article type” in URL
- Rename a slug label
- List Posts By Custom Taxonomy
- Dynamically insert an article at the top of a taxonomy archive – or?
- Many to many to many custom post relationships
- WordPress multisite – is it possible to have different taxonomies for each site?
- How to filter a custom post type by custom taxonomy without 404
- How to show list of taxonomy terms associated with specific post?
- Custom Columns for Custom Post Type Manager
- I have custom post type with custom taxonomy. But not found the taxonomy page..
- Group Custom post type in a taxonomy page by its child taxomony
- Get child categories of custom taxonomy category?
- Display Taxonomy Term Children in a Drop Down without Submit Button
- Custom taxonomy query showing more than 4 posts
- Check category_name or taxonomy slug for a Custom Post Type?
- Help on Custom Post Types
- Display featured posts for a custom post type by taxonomy
- What is the most efficient way to execute recursive complex queries?
- 2 custom post type paging in 1 custom taxonomy
- How to display post from one custom post type in another custom post type with the same taxonomy?
- WordPress REST API V2: “{CUSTOM_POST_TYPE} matches Term ID List and Term ID Taxonomy Query, but should match only one.”
- Duplicate slug/permalink issue while adding same post name
- how to achieve this permalink abc.com/CPTName/CustomPostTypeCategorySlug/categoryname
- How to display list of custom post taxonomy terms and their posts (if any)?
- have to do a while have post to show for two custom post types sharing the same taxonomy?
- Remove custom permalink base from CPT custom category and custom tags
- How to handle this wordpress custom post type rewrite problem?
- List taxonomies by post id
- How do i display all categories of a custom post type and have respective page for them?
- Is it possible to arrange Custom Post Types from CPTUI into a Folder?
- Change Search display for Custom Post Type
- WooCommerce – Custom related product (Spareparts)
- Issue with Custom Post Types and Permalinks
- Automatically Add a default category to a Custom Post Type before save_post action
- Add active class to foundation 6 tabs while looping categories
- Get list of all Topics in use by a custom post type
- Custom post types with child taxonomy not visible in admin
- 404 error next-page [2] PageNavi custom type taxonomy
- Connect 8 Taxonomies to One (Main) taxonomy. How to?
- Filter By Term Not Working – Custom Post Type
- Custom post type category archive URL redirects to home page
- How to have permalink structure based on taxonomy terms
- Checking Taxonomy Terms for a Custom Post Type With get_the_terms Not Working
- How to display category wise posts on seprarate template
- Organizing The Custom Post Type with Taxonomies / Parent Posts
- show custom taxonomies in hierarchy
- Display 2nd category, only once, as sub-heading, in the loop
- Getting (Invalid) when adding custom taxonomy of custom post type link in menu [closed]
- Display custom taxonomy posts of custom post types
- Looping taxonomy in taxonomy?
- Missing categories for Custom Taxonomy and Custom Posts
- Show one of the taxonomies always as default
- Custom taxonomy labels won’t display
- Custom post type with custom taxonomy
- Get X posts with the same terms as the current post (custom post type and custom taxonomy)
- From form submission values – dynamically update CPT “has_archive” slug and custom taxonomy “rewrite” slug value
- Custom Post Type urls not working
- pre_get_posts causes Custom Posts appear under ‘Pages’ menu
- Show custom category archive as front page and remove taxonomy slug from urls