WP_Customize_Header_Image_Control::__construct

Advertisement

Summery Summery

Constructor.

Syntax Syntax

WP_Customize_Header_Image_Control::__construct( WP_Customize_Manager $manager )

Parameters Parameters

$manager

(Required) Customizer bootstrap instance.

Source Source

File: wp-includes/customize/class-wp-customize-header-image-control.php

	public function __construct( $manager ) {
		parent::__construct(
			$manager,
			'header_image',
			array(
				'label'    => __( 'Header Image' ),
				'settings' => array(
					'default' => 'header_image',
					'data'    => 'header_image_data',
				),
				'section'  => 'header_image',
				'removed'  => 'remove-header',
				'get_url'  => 'get_header_image',
			)
		);

	}

Advertisement

Changelog Changelog

Changelog
Version Description
3.4.0 Introduced.

Advertisement

Leave a Reply