woocommerce_product_category_filter_threshold
Использование
add_filter( 'woocommerce_product_category_filter_threshold', 'wp_kama_woocommerce_product_category_filter_threshold_filter' ); /** * Function for `woocommerce_product_category_filter_threshold` filter-hook. * * @param $100 * * @return */ function wp_kama_woocommerce_product_category_filter_threshold_filter( $100 ){ // filter... return $100; }
- $100
- -
Где вызывается хук
woocommerce_product_category_filter_threshold
woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php 328
if ( $categories_count <= apply_filters( 'woocommerce_product_category_filter_threshold', 100 ) ) {