Created
May 28, 2019 13:07
-
-
Save gsgoraya/00d831b3a68df09dd34e3515934177f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* woocommerce_before_shop_loop_item hook. | |
* | |
* @hooked woocommerce_template_loop_product_link_open - 10 | |
*/ | |
do_action( 'woocommerce_before_shop_loop_item' ); | |
/** | |
* woocommerce_before_shop_loop_item_title hook. | |
* | |
* @hooked woocommerce_show_product_loop_sale_flash - 10 | |
* @hooked woocommerce_template_loop_product_thumbnail - 10 | |
*/ | |
do_action( 'woocommerce_before_shop_loop_item_title' ); | |
/** | |
* woocommerce_shop_loop_item_title hook. | |
* | |
* @hooked woocommerce_template_loop_product_title - 10 | |
*/ | |
do_action( 'woocommerce_shop_loop_item_title' ); | |
/** | |
* woocommerce_after_shop_loop_item_title hook. | |
* | |
* @hooked woocommerce_template_loop_rating - 5 | |
* @hooked woocommerce_template_loop_price - 10 | |
*/ | |
do_action( 'woocommerce_after_shop_loop_item_title' ); | |
/** | |
* woocommerce_after_shop_loop_item hook. | |
* | |
* @hooked woocommerce_template_loop_product_link_close - 5 | |
* @hooked woocommerce_template_loop_add_to_cart - 10 | |
*/ | |
do_action( 'woocommerce_after_shop_loop_item' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment