WP_Customize_Control::input_attrs

Advertisement

Summery Summery

Render the custom attributes for the control’s input element.

Syntax Syntax

WP_Customize_Control::input_attrs()

Source Source

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

	public function input_attrs() {
		foreach ( $this->input_attrs as $attr => $value ) {
			echo $attr . '="' . esc_attr( $value ) . '" ';
		}
	}

Advertisement

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Advertisement

Leave a Reply