woocommerce_widget_product_item_start action-hookWC 1.0

Usage

add_action( 'woocommerce_widget_product_item_start', 'wp_kama_woocommerce_widget_product_item_start_action' );

/**
 * Function for `woocommerce_widget_product_item_start` action-hook.
 * 
 * @param  $args 
 *
 * @return void
 */
function wp_kama_woocommerce_widget_product_item_start_action( $args ){

	// action...
}
$args
-

Where the hook is called

In file: /templates/content-widget-product.php
woocommerce_widget_product_item_start
woocommerce/templates/content-widget-product.php 29
<?php do_action( 'woocommerce_widget_product_item_start', $args ); ?>

Where the hook is used in WooCommerce

Usage not found.