Make WordPress Core


Ignore:
Timestamp:
05/02/2016 03:59:56 AM (10 years ago)
Author:
DrewAPicture
Message:

Docs: Remove inline @see tags from function, class, and method references in inline docs.

Known functions, classes, and methods are now auto-linked in Code Reference pages following #meta1483.

Note: Hook references are still linked via inline @see tags due to the unlikelihood of reliably matching for known hooks based on a RegEx pattern.

See #32246.

File:
1 edited

Legend:

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

    r35385 r37342  
    140140         *
    141141         * @var callable Callback is called with one argument, the instance of
    142          *               {@see WP_Customize_Section}, and returns bool to indicate
    143          *               whether the section is active (such as it relates to the URL
    144          *               currently being previewed).
     142         *               WP_Customize_Section, and returns bool to indicate whether
     143         *               the section is active (such as it relates to the URL currently
     144         *               being previewed).
    145145         */
    146146        public $active_callback = '';
     
    189189
    190190                /**
    191                  * Filter response of {@see WP_Customize_Section::active()}.
     191                 * Filter response of WP_Customize_Section::active().
    192192                 *
    193193                 * @since 4.1.0
    194194                 *
    195195                 * @param bool                 $active  Whether the Customizer section is active.
    196                  * @param WP_Customize_Section $section {@see WP_Customize_Section} instance.
     196                 * @param WP_Customize_Section $section WP_Customize_Section instance.
    197197                 */
    198198                $active = apply_filters( 'customize_section_active', $active, $section );
     
    202202
    203203        /**
    204          * Default callback used when invoking {@see WP_Customize_Section::active()}.
     204         * Default callback used when invoking WP_Customize_Section::active().
    205205         *
    206206         * Subclasses can override this with their specific logic, or they may provide
     
    307307         * Render the section UI in a subclass.
    308308         *
    309          * Sections are now rendered in JS by default, see {@see WP_Customize_Section::print_template()}.
     309         * Sections are now rendered in JS by default, see WP_Customize_Section::print_template().
    310310         *
    311311         * @since 3.4.0
Note: See TracChangeset for help on using the changeset viewer.