woocommerce_shortcode_(type)_loop_no_results хук-событиеWC 1.0

Использование

add_action( 'woocommerce_shortcode_(type)_loop_no_results', 'wp_kama_woocommerce_shortcode_type_loop_no_results_action' );

/**
 * Function for `woocommerce_shortcode_(type)_loop_no_results` action-hook.
 * 
 * @param  $attributes 
 *
 * @return void
 */
function wp_kama_woocommerce_shortcode_type_loop_no_results_action( $attributes ){

	// action...
}
$attributes
-

Где вызывается хук

WC_Shortcode_Products::product_loop()
woocommerce_shortcode_(type)_loop_no_results
woocommerce/includes/shortcodes/class-wc-shortcode-products.php 680
do_action( "woocommerce_shortcode_{$this->type}_loop_no_results", $this->attributes );

Где используется хук в WooCommerce

Использование не найдено.