Created
April 3, 2020 22:52
-
-
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
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 // 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