Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created July 29, 2013 10:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jameskoster/6103355 to your computer and use it in GitHub Desktop.
Save jameskoster/6103355 to your computer and use it in GitHub Desktop.
Mystile - Only display parent categories on homepage
add_filter( 'mystile_homepage_product_categories_params', 'homepage_parent_categories_only' );
function homepage_parent_categories_only( $params ) {
$params = 'parent="0"';
return $params;
}
@BurnzZ
Copy link

BurnzZ commented Sep 21, 2014

Omg. This saved me! Thank you so much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment