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
-

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

В файле: /includes/admin/views/field-group-field.php
acf/render_field_settings/type=(type)
acf/includes/admin/views/field-group-field.php 149
do_action( "acf/render_field_settings/type={$field['type']}", $field );
acf/includes/admin/admin-field-group.php 601
do_action( "acf/render_field_settings/type={$field['type']}", $field );

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

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