Skip to content

Instantly share code, notes, and snippets.

@NickGreen
Created April 3, 2020 22:52
Show Gist options
  • Save NickGreen/c19037d34b7a1ed1ec1a93d1a29879fe to your computer and use it in GitHub Desktop.
Save NickGreen/c19037d34b7a1ed1ec1a93d1a29879fe to your computer and use it in GitHub Desktop.
Filters out a specific category from Storefront best sellers section on home page
<?php // dont copy this line
add_filter( 'storefront_best_selling_products_shortcode_args', 'custom_storefront_best_selling_products');
function custom_storefront_best_selling_products( $args ) {
$args['category'] = 'installation';
$args['cat_operator'] = 'NOT IN';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment