woocommerce_before_settings_(current_tab)
Использование
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... }
Где вызывается хук
woocommerce_before_settings_(current_tab)
woocommerce/includes/admin/views/html-admin-settings.php 21
<?php do_action( 'woocommerce_before_settings_' . $current_tab ); ?>