woocommerce_taxonomy_args_product_type filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_taxonomy_args_product_type', 'filter_function_name_358' ); function filter_function_name_358( $array ){ // filter... return $array; }
- $array
- -
Where the hook is called
woocommerce_taxonomy_args_product_type
woocommerce/includes/class-wc-post-types.php 54-65
apply_filters( 'woocommerce_taxonomy_args_product_type', array( 'hierarchical' => false, 'show_ui' => false, 'show_in_nav_menus' => false, 'query_var' => is_admin(), 'rewrite' => false, 'public' => false, 'label' => _x( 'Product type', 'Taxonomy name', 'woocommerce' ), ) )