diff --git src/wp-admin/includes/class-walker-nav-menu-edit.php src/wp-admin/includes/class-walker-nav-menu-edit.php
index eb940af..aef9397 100644
|
|
|
class Walker_Nav_Menu_Edit extends Walker_Nav_Menu { |
| 205 | 205 | </label> |
| 206 | 206 | </p> |
| 207 | 207 | |
| | 208 | <?php |
| | 209 | /** |
| | 210 | * Fires just before the move buttons of a nav menu item in the menu editor. |
| | 211 | * |
| | 212 | * @since 5.3.0 |
| | 213 | * |
| | 214 | * @param int $item_id The ID of the nav menu item. |
| | 215 | * @param object $item The data object of the nav menu item. |
| | 216 | * @param int $depth The depth of the nav menu item. |
| | 217 | * @param array $args The nav menu item's arguments. |
| | 218 | * @param int $id The nav menu ID. |
| | 219 | */ |
| | 220 | do_action( 'wp_nav_menu_item_custom_fields', $item_id, $item, $depth, $args, $id ); |
| | 221 | ?> |
| | 222 | |
| 208 | 223 | <fieldset class="field-move hide-if-no-js description description-wide"> |
| 209 | 224 | <span class="field-move-visual-label" aria-hidden="true"><?php _e( 'Move' ); ?></span> |
| 210 | 225 | <button type="button" class="button-link menus-move menus-move-up" data-dir="up"><?php _e( 'Up one' ); ?></button> |