woocommerce_after_shop_loop_item_title
Hook: woocommerce_after_shop_loop_item_title.
Usage
add_action( 'woocommerce_after_shop_loop_item_title', 'wp_kama_woocommerce_after_shop_loop_item_title_action' ); /** * Function for `woocommerce_after_shop_loop_item_title` action-hook. * * @return void */ function wp_kama_woocommerce_after_shop_loop_item_title_action(){ // action... }
Where the hook is called
In file: /templates/content-product.php
woocommerce_after_shop_loop_item_title
woocommerce/templates/content-product.php 57
do_action( 'woocommerce_after_shop_loop_item_title' );
Where the hook is used in WooCommerce
woocommerce/includes/wc-template-hooks.php 111
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
woocommerce/includes/wc-template-hooks.php 112
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );