Displays all product categoris on the homepage of Storefront
This file contains 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
function sd_display_four_home_product_categories( $args ) { | |
// Displays all product categoris on the homepage of Storefront | |
$args['limit'] = -1; | |
// Output | |
return $args; | |
} | |
add_filter( 'storefront_product_categories_args', 'sd_display_four_home_product_categories' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment