woocommerce_shortcode_before_(type)_loop
Использование
add_action( 'woocommerce_shortcode_before_(type)_loop', 'wp_kama_woocommerce_shortcode_before_type_loop_action' ); /** * Function for `woocommerce_shortcode_before_(type)_loop` action-hook. * * @param $attributes * * @return void */ function wp_kama_woocommerce_shortcode_before_type_loop_action( $attributes ){ // action... }
- $attributes
- -
Где вызывается хук
woocommerce_shortcode_before_(type)_loop
woocommerce/includes/shortcodes/class-wc-shortcode-products.php 642
do_action( "woocommerce_shortcode_before_{$this->type}_loop", $this->attributes );
Где используется хук в WooCommerce
woocommerce/includes/wc-template-hooks.php 311
add_action( 'woocommerce_shortcode_before_product_cat_loop', 'woocommerce_output_all_notices', 10 );