Changeset 38130 for trunk/src/wp-admin/includes/nav-menu.php
- Timestamp:
- 07/21/2016 07:20:50 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/nav-menu.php
r38129 r38130 585 585 * 586 586 * @param string $object Not used. 587 * @param array $ taxonomy{587 * @param array $box { 588 588 * Data that will be used as arguments of the taxonomy meta box. 589 589 * 590 590 * @type string $id Meta box ID (used in the 'id' attribute for the meta box). 591 * @type string $title Title of the meta box.592 * @type string $callback Function that fills the box with the desired content.593 * @type object $args The current taxonomy object for this menu item meta box.591 * @type string $title Meta box title. 592 * @type string $callback Meta box display callback. 593 * @type object $args Extra meta box arguments (the taxonomy object for this meta box). 594 594 * } 595 595 */ 596 function wp_nav_menu_item_taxonomy_meta_box( $object, $ taxonomy) {596 function wp_nav_menu_item_taxonomy_meta_box( $object, $box ) { 597 597 global $nav_menu_selected_id; 598 $taxonomy_name = $ taxonomy['args']->name;598 $taxonomy_name = $box['args']->name; 599 599 600 600 // Paginate browsing for large numbers of objects.
Note: See TracChangeset
for help on using the changeset viewer.