Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created January 30, 2012 15:37
Show Gist options
  • Select an option

  • Save jameskoster/1705012 to your computer and use it in GitHub Desktop.

Select an option

Save jameskoster/1705012 to your computer and use it in GitHub Desktop.
WooCommece - Exclude a category from shop page
<?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' );
}
?>
@mchrislay
Copy link
Copy Markdown

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