Adds a customize control.
Description
See also
Parameters
$id
WP_Customize_Control|stringrequired- Customize Control object, or ID.
$args
arrayoptional- Array of properties for the new Control object.
See WP_Customize_Control::__construct() for information on accepted arguments.Default:
array()
Source
public function add_control( $id, $args = array() ) {
if ( $id instanceof WP_Customize_Control ) {
$control = $id;
} else {
$control = new WP_Customize_Control( $this, $id, $args );
}
$this->controls[ $control->id ] = $control;
return $control;
}
Changelog
Version | Description |
---|---|
4.5.0 | Return added WP_Customize_Control instance. |
3.4.0 | Introduced. |
basic use
before
function register_customize_sections( $wp_customize ) { $wp_customize->add_section( 'example', array( 'title'=> __( 'Add Your Name', 'TextDomain' ), 'priority' => 201 ) ); $wp_customize->add_setting( 'setting' ); $wp_customize->add_control( 'setting', array( 'id'=> 'id', 'label' => __( 'First Name:', 'TextDomain' ), 'section' => 'example' ) ); } add_action('customize_register', 'register_customize_sections');