acf/field_group/render_group_settings_tab/(tab_key)
Usage
add_action( 'acf/field_group/render_group_settings_tab/(tab_key)', 'wp_kama_acf_field_group_render_settings_tab_key_action' );
/**
* Function for `acf/field_group/render_group_settings_tab/(tab_key)` action-hook.
*
* @param $field_group
*
* @return void
*/
function wp_kama_acf_field_group_render_settings_tab_key_action( $field_group ){
// action...
}
- $field_group
- -
Where the hook is called
acf/field_group/render_group_settings_tab/(tab_key)
acf/includes/admin/views/acf-field-group/options.php 299
do_action( 'acf/field_group/render_group_settings_tab/' . $tab_key, $field_group );
Where the hook is used in Advanced Custom Fields PRO
acf/src/AI/AI.php 83
add_action( 'acf/field_group/render_group_settings_tab/acf-ai', array( $this, 'render_acf_ai_tab' ) );