Make WordPress Core


Ignore:
Timestamp:
05/02/2016 03:59:56 AM (7 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-setting.php

    r37166 r37342  
    339339
    340340                /**
    341                  * Fires when the {@see WP_Customize_Setting::preview()} method is called for settings
     341                 * Fires when the WP_Customize_Setting::preview() method is called for settings
    342342                 * not handled as theme_mods or options.
    343343                 *
     
    346346                 * @since 3.4.0
    347347                 *
    348                  * @param WP_Customize_Setting $this {@see WP_Customize_Setting} instance.
     348                 * @param WP_Customize_Setting $this WP_Customize_Setting instance.
    349349                 */
    350350                do_action( "customize_preview_{$this->id}", $this );
    351351
    352352                /**
    353                  * Fires when the {@see WP_Customize_Setting::preview()} method is called for settings
     353                 * Fires when the WP_Customize_Setting::preview() method is called for settings
    354354                 * not handled as theme_mods or options.
    355355                 *
     
    358358                 * @since 4.1.0
    359359                 *
    360                  * @param WP_Customize_Setting $this {@see WP_Customize_Setting} instance.
     360                 * @param WP_Customize_Setting $this WP_Customize_Setting instance.
    361361                 */
    362362                do_action( "customize_preview_{$this->type}", $this );
     
    482482         * @since 3.4.0
    483483         *
    484          * @param WP_Customize_Setting $this {@see WP_Customize_Setting} instance.
     484         * @param WP_Customize_Setting $this WP_Customize_Setting instance.
    485485         */
    486486        do_action( 'customize_save_' . $this->id_data[ 'base' ], $this );
     
    598598        } else {
    599599            /**
    600              * Fires when the {@see WP_Customize_Setting::update()} method is called for settings
     600             * Fires when the WP_Customize_Setting::update() method is called for settings
    601601             * not handled as theme_mods or options.
    602602             *
     
    688688         *
    689689         * @param mixed                $value The setting value.
    690          * @param WP_Customize_Setting $this  {@see WP_Customize_Setting} instance.
     690         * @param WP_Customize_Setting $this  WP_Customize_Setting instance.
    691691         */
    692692        $value = apply_filters( "customize_sanitize_js_{$this->id}", $this->value(), $this );
Note: See TracChangeset for help on using the changeset viewer.