acf/field_group/admin_head

acf/field_group/admin_head

Hook Type: action

See hook in core

Displaying hooks found in version: advanced-custom-fields.6.2.7

do_action('acf/field_group/admin_head') is found 1 times:

  • /includes/admin/post-types/admin-field-group.php line 161
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
        add_filter( 'screen_settings', array( $this, 'screen_settings' ), 10, 1 );
        add_filter( 'get_user_option_screen_layout_acf-field-group', array( $this, 'screen_layout' ), 10, 1 );
     
        // 3rd party hook.
        do_action( 'acf/field_group/admin_head' );
    }
     
    /**
     * This action will allow ACF to render metaboxes after the title.
     */
    public function edit_form_after_title() {