acf/render_field_settings/type=(type) хук-событиеACF 1.0

Использование

add_action( 'acf/render_field_settings/type=(type)', 'wp_kama_acf_render_field_settings_type_action' );

/**
 * Function for `acf/render_field_settings/type=(type)` action-hook.
 * 
 * @param  $field 
 *
 * @return void
 */
function wp_kama_acf_render_field_settings_type_action( $field ){

	// action...
}
$field
-

Где вызывается хук

acf_admin_field_group::ajax_render_field_settings()
acf/render_field_settings/type=(type)
acf/includes/admin/post-types/admin-field-group.php 499
do_action( "acf/render_field_settings/type={$field['type']}", $field );
acf/includes/admin/views/acf-field-group/field.php 197
do_action( "acf/render_field_settings/type={$field['type']}", $field );

Где используется хук в Advanced Custom Fields PRO

Использование не найдено.