WP_Customize_Date_Time_Control::json()

Export data to JS.


Description Description


Return Return

(array)


Top ↑

Source Source

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

	public function json() {
		$data = parent::json();

		$data['maxYear']          = intval( $this->max_year );
		$data['minYear']          = intval( $this->min_year );
		$data['allowPastDate']    = (bool) $this->allow_past_date;
		$data['twelveHourFormat'] = (bool) $this->twelve_hour_format;
		$data['includeTime']      = (bool) $this->include_time;

		return $data;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.9.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.