diff --git src/wp-admin/includes/nav-menu.php src/wp-admin/includes/nav-menu.php
index a6aac33..29d1644 100644
|
|
function wp_nav_menu_item_post_type_meta_box( $object, $box ) { |
428 | 428 | * @since 4.3.0 |
429 | 429 | * |
430 | 430 | * @param array $most_recent An array of post objects being listed. |
431 | | * @param array $args An array of WP_Query arguments. |
| 431 | * @param array $recent_args An array of WP_Query arguments. |
432 | 432 | * @param array $box Arguments passed to wp_nav_menu_item_post_type_meta_box(). |
433 | 433 | */ |
434 | | $most_recent = apply_filters( "nav_menu_items_{$post_type_name}_recent", $most_recent, $args, $box ); |
| 434 | $most_recent = apply_filters( "nav_menu_items_{$post_type_name}_recent", $most_recent, $recent_args, $box ); |
435 | 435 | |
436 | 436 | echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $most_recent), 0, (object) $args ); |
437 | 437 | ?> |