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/nav-menu-template.php

    r36081 r37342  
    105105         * @param array  $classes The CSS classes that are applied to the menu item's `<li>` element.
    106106         * @param object $item    The current menu item.
    107          * @param array  $args    An array of {@see wp_nav_menu()} arguments.
     107         * @param array  $args    An array of wp_nav_menu() arguments.
    108108         * @param int    $depth   Depth of menu item. Used for padding.
    109109         */
     
    119119         * @param string $menu_id The ID that is applied to the menu item's `<li>` element.
    120120         * @param object $item    The current menu item.
    121          * @param array  $args    An array of {@see wp_nav_menu()} arguments.
     121         * @param array  $args    An array of wp_nav_menu() arguments.
    122122         * @param int    $depth   Depth of menu item. Used for padding.
    123123         */
     
    148148         * }
    149149         * @param object $item  The current menu item.
    150          * @param array  $args  An array of {@see wp_nav_menu()} arguments.
     150         * @param array  $args  An array of wp_nav_menu() arguments.
    151151         * @param int    $depth Depth of menu item. Used for padding.
    152152         */
     
    171171         * @param string $title The menu item's title.
    172172         * @param object $item  The current menu item.
    173          * @param array  $args  An array of {@see wp_nav_menu()} arguments.
     173         * @param array  $args  An array of wp_nav_menu() arguments.
    174174         * @param int    $depth Depth of menu item. Used for padding.
    175175         */
     
    194194         * @param object $item        Menu item data object.
    195195         * @param int    $depth       Depth of menu item. Used for padding.
    196          * @param array  $args        An array of {@see wp_nav_menu()} arguments.
     196         * @param array  $args        An array of wp_nav_menu() arguments.
    197197         */
    198198        $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
Note: See TracChangeset for help on using the changeset viewer.