acf/post_type/admin_head

acf/post_type/admin_head

Hook Type: action

See hook in core

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

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

  • /includes/admin/post-types/admin-post-type.php line 172
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
        add_filter( 'get_user_option_closedpostboxes_acf-post-type', array( $this, 'force_basic_settings' ), 10, 1 );
        add_filter( 'get_user_option_closedpostboxes_acf-post-type', array( $this, 'force_advanced_settings' ), 10, 1 );
     
        // 3rd party hook.
        do_action( 'acf/post_type/admin_head' );
    }
     
    /**
     * This action will allow ACF to render metaboxes after the title.
     */
    public function edit_form_after_title() {