Make WordPress Core

Changeset 37337


Ignore:
Timestamp:
05/01/2016 05:27:58 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Standardize on using :: for Class::method() references in WP_Customize_Control` inline docs.

See #32246. See #meta1483.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-control.php

    r36689 r37337  
    176176     *                                                 used for 'checkbox', 'radio', 'select', 'textarea', or
    177177     *                                                 'dropdown-pages' control types. Default empty array.
    178      *     @type array                $json            Deprecated. Use {@see WP_Customize_Control->json()} instead.
     178     *     @type array                $json            Deprecated. Use WP_Customize_Control::json() instead.
    179179     *     @type string               $type            Control type. Core controls include 'text', 'checkbox',
    180180     *                                                 'textarea', 'radio', 'select', and 'dropdown-pages'. Additional
     
    445445     * Render the control's content.
    446446     *
    447      * Allows the content to be overriden without having to rewrite the wrapper in $this->render().
     447     * Allows the content to be overriden without having to rewrite the wrapper in `$this::render()`.
    448448     *
    449449     * Supports basic input types `text`, `checkbox`, `textarea`, `radio`, `select` and `dropdown-pages`.
    450450     * Additional input types such as `email`, `url`, `number`, `hidden` and `date` are supported implicitly.
    451451     *
    452      * Control content can alternately be rendered in JS. See {@see WP_Customize_Control::print_template()}.
     452     * Control content can alternately be rendered in JS. See WP_Customize_Control::print_template().
    453453     *
    454454     * @since 3.4.0
Note: See TracChangeset for help on using the changeset viewer.