Created
January 30, 2012 15:37
-
-
Save jameskoster/1705012 to your computer and use it in GitHub Desktop.
WooCommece - Exclude a category from shop page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This code should be added to functions.php of your theme | |
**/ | |
add_filter( 'parse_query', 'custom_parse_query' ); | |
function custom_parse_query( $q ) { | |
if ( !$q->is_post_type_archive() ) return; | |
$q->set( 'tax_query', array(array( | |
'taxonomy' => 'product_cat', | |
'field' => 'slug', | |
'terms' => array( 'tshirts' ), | |
'operator' => 'NOT IN' | |
))); | |
remove_filter( 'parse_query', 'custom_parse_query' ); | |
} | |
?> |
could anyone pretty please see about getting this to work again, since last update this code no longer works. .i still see all categories on the home/shop page
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This does work, but when I use the Product Category Shortocde [product_category category="test-category-name" per_page="9" columns="3" orderby="date" order="desc"]
The Products from the specified category do NOT list, instead products from another category display, without pagination ..
Any ideas?
thank you