woocommerce_after_output_product_categories
Usage
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
- -
Where the hook is called
woocommerce_after_output_product_categories
woocommerce/includes/wc-template-functions.php 2619
'after' => apply_filters( 'woocommerce_after_output_product_categories', '' ),