Custom_Background::init() WordPress Method

The Custom_Background::init() method initializes the custom background feature. This method is called during the WordPress initialization process.

Custom_Background::init() #

Set up the hooks for the Custom Background admin page.


Source

File: wp-admin/includes/class-custom-background.php

64
65
66
67
68
69
70
71
72
73
74
75
76
77
public function init() {
    $page = add_theme_page( __( 'Background' ), __( 'Background' ), 'edit_theme_options', 'custom-background', array( $this, 'admin_page' ) );
    if ( ! $page ) {
        return;
    }
 
    add_action( "load-{$page}", array( $this, 'admin_load' ) );
    add_action( "load-{$page}", array( $this, 'take_action' ), 49 );
    add_action( "load-{$page}", array( $this, 'handle_upload' ), 49 );
 
    if ( $this->admin_header_callback ) {
        add_action( "admin_head-{$page}", $this->admin_header_callback, 51 );
    }
}


Top ↑

Changelog

Changelog
VersionDescription
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by the Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.