fillter to modify the get_categories arguments on the shop page

This commit is contained in:
Gerhard 2013-01-10 14:56:04 +02:00
parent 2ba045d490
commit 99fe1207c2
1 changed files with 1 additions and 1 deletions

View File

@ -1112,7 +1112,7 @@ if ( ! function_exists( 'woocommerce_product_subcategories' ) ) {
'taxonomy' => 'product_cat',
'pad_counts' => 1
);
$product_categories = get_categories( $args );
$product_categories = get_categories( apply_filters( 'woocommerce_product_subcategories_args', $args ) );
$product_category_found = false;