woocommerce_after_output_product_categories
Использование
add_filter( 'woocommerce_after_output_product_categories', 'wp_kama_woocommerce_after_output_product_categories_filter' ); /** * Function for `woocommerce_after_output_product_categories` filter-hook. * * @param $string * * @return */ function wp_kama_woocommerce_after_output_product_categories_filter( $string ){ // filter... return $string; }
- $string
- -
Где вызывается хук
woocommerce_after_output_product_categories
woocommerce/includes/wc-template-functions.php 2675
'after' => apply_filters( 'woocommerce_after_output_product_categories', '' ),