Pass args through for deprecated function Closes #5087

This commit is contained in:
Mike Jolley 2014-03-12 13:17:53 +00:00
parent 49b8ad4378
commit 9a3b796bf4
1 changed files with 2 additions and 2 deletions

View File

@ -338,8 +338,8 @@ function woocommerce_deprecated_filter_mapping( $data, $arg_1 = '', $arg_2 = '',
function woocommerce_product_dropdown_categories( $args = array(), $deprecated_hierarchical = 1, $deprecated_show_uncategorized = 1, $deprecated_orderby = '' ) { function woocommerce_product_dropdown_categories( $args = array(), $deprecated_hierarchical = 1, $deprecated_show_uncategorized = 1, $deprecated_orderby = '' ) {
return wc_product_dropdown_categories( $args, $deprecated_hierarchical, $deprecated_show_uncategorized, $deprecated_orderby ); return wc_product_dropdown_categories( $args, $deprecated_hierarchical, $deprecated_show_uncategorized, $deprecated_orderby );
} }
function woocommerce_walk_category_dropdown_tree() { function woocommerce_walk_category_dropdown_tree( $a1 = '', $a2 = '', $a3 = '' ) {
return wc_walk_category_dropdown_tree(); return wc_walk_category_dropdown_tree( $a1, $a2, $a3 );
} }
function woocommerce_taxonomy_metadata_wpdbfix() { function woocommerce_taxonomy_metadata_wpdbfix() {
return wc_taxonomy_metadata_wpdbfix(); return wc_taxonomy_metadata_wpdbfix();