woocommerce_sections_(current_tab)
Usage
add_action( 'woocommerce_sections_(current_tab)', 'wp_kama_woocommerce_sections_current_tab_action' );
/**
* Function for `woocommerce_sections_(current_tab)` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_sections_current_tab_action(){
// action...
}Where the hook is called
woocommerce_sections_(current_tab)
woocommerce/includes/admin/views/html-admin-settings.php 117
do_action( 'woocommerce_sections_' . $current_tab );
Where the hook is used in WooCommerce
woocommerce/src/Internal/DataStores/Orders/CustomOrdersTableController.php 147
add_action( 'woocommerce_sections_advanced', array( $this, 'sync_now' ) );