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

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

add_action( 'woocommerce_shortcode_after_(type)_loop', 'wp_kama_woocommerce_shortcode_after_type_loop_action' );

/**
 * Function for `woocommerce_shortcode_after_(type)_loop` action-hook.
 * 
 * @param  $attributes 
 *
 * @return void
 */
function wp_kama_woocommerce_shortcode_after_type_loop_action( $attributes ){

	// action...
}
$attributes
-

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

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

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

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