woocommerce_after_subcategory_title
The woocommerce_after_subcategory_title hook.
Usage
add_action( 'woocommerce_after_subcategory_title', 'wp_kama_woocommerce_after_subcategory_title_action' );
/**
* Function for `woocommerce_after_subcategory_title` action-hook.
*
* @param $category
*
* @return void
*/
function wp_kama_woocommerce_after_subcategory_title_action( $category ){
// action...
}
- $category
- -
Where the hook is called
In file: /templates/content-product-cat.php
woocommerce_after_subcategory_title
woocommerce/templates/content-product-cat.php 48
do_action( 'woocommerce_after_subcategory_title', $category );