acf/post_type/render_settings_tab/(tab_key)
Usage
add_action( 'acf/post_type/render_settings_tab/(tab_key)', 'wp_kama_acf_post_type_render_settings_tab_key_action' );
/**
* Function for `acf/post_type/render_settings_tab/(tab_key)` action-hook.
*
* @param $acf_post_type
*
* @return void
*/
function wp_kama_acf_post_type_render_settings_tab_key_action( $acf_post_type ){
// action...
}
- $acf_post_type
- -
Where the hook is called
acf/post_type/render_settings_tab/(tab_key)
acf/includes/admin/views/acf-post-type/advanced-settings.php 1347
do_action( "acf/post_type/render_settings_tab/{$tab_key}", $acf_post_type );
Where the hook is used in Advanced Custom Fields PRO
acf/src/AI/AI.php 87
add_action( 'acf/post_type/render_settings_tab/acf-ai', array( $this, 'render_acf_ai_tab' ) );
acf/src/AI/GEO/GEO.php 45
add_action( 'acf/post_type/render_settings_tab/schema', array( $this, 'render_post_type_schema_tab' ) );