WP_Customize_Color_Control::__construct() WordPress Method

The WP_Customize_Color_Control::__construct() method is used to create a new color control object. This object allows you to manage colors in the WordPress Customizer.

WP_Customize_Color_Control::__construct( WP_Customize_Manager $manager, string $id, array $args = array() ) #

Constructor.


Description

Top ↑

See also


Top ↑

Parameters

$manager

(WP_Customize_Manager)(Required)Customizer bootstrap instance.

$id

(string)(Required)Control ID.

$args

(array)(Optional) Arguments to override class property defaults. See WP_Customize_Control::__construct() for information on accepted arguments.

Default value: array()


Top ↑

Source

File: wp-includes/customize/class-wp-customize-color-control.php

	public function __construct( $manager, $id, $args = array() ) {
		$this->statuses = array( '' => __( 'Default' ) );
		parent::__construct( $manager, $id, $args );
	}


Top ↑

Changelog

Changelog
VersionDescription
3.4.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.