woocommerce_before_settings_(current_tab) action-hookWC 1.0

Usage

add_action( 'woocommerce_before_settings_(current_tab)', 'wp_kama_woocommerce_before_settings_current_tab_action' );

/**
 * Function for `woocommerce_before_settings_(current_tab)` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_before_settings_current_tab_action(){

	// action...
}

Where the hook is called

In file: /includes/admin/views/html-admin-settings.php
woocommerce_before_settings_(current_tab)
woocommerce/includes/admin/views/html-admin-settings.php 21
<?php do_action( 'woocommerce_before_settings_' . $current_tab ); ?>

Where the hook is used in WooCommerce

Usage not found.