Skip to content

Instantly share code, notes, and snippets.

View sarahenry79's full-sized avatar
🎯
Focusing

sarahenry79

🎯
Focusing
View GitHub Profile
@woogists
woogists / wc-exclude-product-category-from-shop-page.php
Last active December 29, 2022 13:49
[Frontend Snippets] Exclude products from a particular category on the shop page
/**
* Exclude products from a particular category on the shop page
*/
function custom_pre_get_posts_query( $q ) {
$tax_query = (array) $q->get( 'tax_query' );
$tax_query[] = array(
'taxonomy' => 'product_cat',
'field' => 'slug',