woocommerce_shop_loop_item_title
Hook: woocommerce_shop_loop_item_title.
Usage
add_action( 'woocommerce_shop_loop_item_title', 'wp_kama_woocommerce_shop_loop_item_title_action' ); /** * Function for `woocommerce_shop_loop_item_title` action-hook. * * @return void */ function wp_kama_woocommerce_shop_loop_item_title_action(){ // action... }
Where the hook is called
In file: /templates/content-product.php
woocommerce_shop_loop_item_title
woocommerce/templates/content-product.php 49
do_action( 'woocommerce_shop_loop_item_title' );
Where the hook is used in WooCommerce
woocommerce/includes/wc-template-hooks.php 105
add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );