acf/taxonomy/render_settings_tab/(tab_key)
Usage
add_action( 'acf/taxonomy/render_settings_tab/(tab_key)', 'wp_kama_acf_taxonomy_render_settings_tab_key_action' );
/**
* Function for `acf/taxonomy/render_settings_tab/(tab_key)` action-hook.
*
* @param $acf_taxonomy
*
* @return void
*/
function wp_kama_acf_taxonomy_render_settings_tab_key_action( $acf_taxonomy ){
// action...
}
- $acf_taxonomy
- -
Where the hook is called
acf/taxonomy/render_settings_tab/(tab_key)
acf/includes/admin/views/acf-taxonomy/advanced-settings.php 1254
do_action( "acf/taxonomy/render_settings_tab/{$tab_key}", $acf_taxonomy );
Where the hook is used in Advanced Custom Fields PRO
acf/src/AI/AI.php 91
add_action( 'acf/taxonomy/render_settings_tab/acf-ai', array( $this, 'render_acf_ai_tab' ) );