woocommerce_shop_loop_header action-hookWC 8.6.0

Hook: woocommerce_shop_loop_header.

Usage

add_action( 'woocommerce_shop_loop_header', 'wp_kama_woocommerce_shop_loop_header_action' );

/**
 * Function for `woocommerce_shop_loop_header` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_shop_loop_header_action(){

	// action...
}

Changelog

Since 8.6.0 Introduced.

Where the hook is called

In file: /templates/archive-product.php
woocommerce_shop_loop_header
woocommerce/templates/archive-product.php 38
do_action( 'woocommerce_shop_loop_header' );

Where the hook is used in WooCommerce

woocommerce/includes/wc-template-hooks.php 61
add_action( 'woocommerce_shop_loop_header', 'woocommerce_product_taxonomy_archive_header' );