Make WordPress Core

Changeset 35979


Ignore:
Timestamp:
12/16/2015 11:10:47 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Clarify the summary and add missing parameter notations to the DocBlock for _wp_delete_tax_menu_item().

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/nav-menu.php

    r35452 r35979  
    929929
    930930/**
    931  * Callback for handling a menu item when its original object is deleted.
     931 * Serves as a callback for handling a menu item when its original object is deleted.
    932932 *
    933933 * @since 3.0.0
    934934 * @access private
    935935 *
    936  * @param int $object_id The ID of the original object being trashed.
    937  *
     936 * @param int    $object_id Optional. The ID of the original object being trashed. Default 0.
     937 * @param int    $tt_id     Term taxonomy ID. Unused.
     938 * @param string $taxonomy  Taxonomy slug.
    938939 */
    939940function _wp_delete_tax_menu_item( $object_id = 0, $tt_id, $taxonomy ) {
Note: See TracChangeset for help on using the changeset viewer.