woocommerce_product_category_filter_threshold хук-фильтрWC 1.0

Использование

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
-

Где вызывается хук

WC_Admin_List_Table_Products::render_products_category_filter()
woocommerce_product_category_filter_threshold
woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php 327
if ( $categories_count <= apply_filters( 'woocommerce_product_category_filter_threshold', 100 ) ) {

Где используется хук в WooCommerce

Использование не найдено.