Docs: Standardize on using `::` for `Class::method()` references in WP_Customize_Control` inline docs.
See #32246. See #meta1483. Built from https://develop.svn.wordpress.org/trunk@37337 git-svn-id: http://core.svn.wordpress.org/trunk@37303 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
22bae92301
commit
0055c9746c
|
@ -175,7 +175,7 @@ class WP_Customize_Control {
|
|||
* attribute names are the keys and values are the values. Not
|
||||
* used for 'checkbox', 'radio', 'select', 'textarea', or
|
||||
* 'dropdown-pages' control types. Default empty array.
|
||||
* @type array $json Deprecated. Use {@see WP_Customize_Control->json()} instead.
|
||||
* @type array $json Deprecated. Use WP_Customize_Control::json() instead.
|
||||
* @type string $type Control type. Core controls include 'text', 'checkbox',
|
||||
* 'textarea', 'radio', 'select', and 'dropdown-pages'. Additional
|
||||
* input types such as 'email', 'url', 'number', 'hidden', and
|
||||
|
@ -444,12 +444,12 @@ class WP_Customize_Control {
|
|||
/**
|
||||
* Render the control's content.
|
||||
*
|
||||
* Allows the content to be overriden without having to rewrite the wrapper in $this->render().
|
||||
* Allows the content to be overriden without having to rewrite the wrapper in `$this::render()`.
|
||||
*
|
||||
* Supports basic input types `text`, `checkbox`, `textarea`, `radio`, `select` and `dropdown-pages`.
|
||||
* Additional input types such as `email`, `url`, `number`, `hidden` and `date` are supported implicitly.
|
||||
*
|
||||
* Control content can alternately be rendered in JS. See {@see WP_Customize_Control::print_template()}.
|
||||
* Control content can alternately be rendered in JS. See WP_Customize_Control::print_template().
|
||||
*
|
||||
* @since 3.4.0
|
||||
*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-alpha-37336';
|
||||
$wp_version = '4.6-alpha-37337';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue