diff --git src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php
index 8bffb0e..95f8398 100644
|
|
class WP_Customize_Nav_Menu_Item_Setting extends WP_Customize_Setting { |
610 | 610 | } elseif ( 'post_type_archive' === $post->type && ! empty( $post->object ) ) { |
611 | 611 | $post->url = get_post_type_archive_link( $post->object ); |
612 | 612 | } elseif ( 'taxonomy' == $post->type && ! empty( $post->object ) ) { |
613 | | $post->url = get_term_link( (int) $post->object, $post->object ); |
| 613 | $post->url = get_term_link( (int) $post->object_id, $post->object ); |
614 | 614 | } |
615 | 615 | } |
616 | 616 | |