Created
July 29, 2013 10:09
-
-
Save jameskoster/6103355 to your computer and use it in GitHub Desktop.
Mystile - Only display parent categories on homepage
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
add_filter( 'mystile_homepage_product_categories_params', 'homepage_parent_categories_only' ); | |
function homepage_parent_categories_only( $params ) { | |
$params = 'parent="0"'; | |
return $params; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Omg. This saved me! Thank you so much!