diff --git a/src/wp-admin/nav-menus.php b/src/wp-admin/nav-menus.php
index dcd95e82b5..1c4c00588e 100644
--- a/src/wp-admin/nav-menus.php
+++ b/src/wp-admin/nav-menus.php
@@ -624,7 +624,7 @@ if ( ! $locations_screen ) : // Main tab.
);
$menu_management = '
' . __( 'The menu management box at the top of the screen is used to control which menu is opened in the editor below.' ) . '
';
- $menu_management .= '- ' . __( 'To edit an existing menu, choose a menu from the drop down and click Select' ) . '
';
+ $menu_management .= '- ' . __( 'To edit an existing menu, choose a menu from the dropdown and click Select' ) . '
';
$menu_management .= '- ' . __( 'If you have not yet created any menus, click the ’create a new menu’ link to get started' ) . '
';
$menu_management .= '' . __( 'You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.' ) . '
';
@@ -652,7 +652,7 @@ if ( ! $locations_screen ) : // Main tab.
);
else : // Locations tab.
$locations_overview = '' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '
';
- $locations_overview .= '- ' . __( 'To assign menus to one or more theme locations, select a menu from each location’s drop down. When you are finished, click Save Changes' ) . '
';
+ $locations_overview .= '- ' . __( 'To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes' ) . '
';
$locations_overview .= '- ' . __( 'To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link' ) . '
';
$locations_overview .= '- ' . __( 'To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location' ) . '
';
diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php
index ccb13c99b5..a571f52bc8 100644
--- a/src/wp-includes/post-template.php
+++ b/src/wp-includes/post-template.php
@@ -1204,12 +1204,12 @@ function wp_dropdown_pages( $args = '' ) {
}
/**
- * Filters the HTML output of a list of pages as a drop down.
+ * Filters the HTML output of a list of pages as a dropdown.
*
* @since 2.1.0
* @since 4.4.0 `$parsed_args` and `$pages` added as arguments.
*
- * @param string $output HTML output for drop down list of pages.
+ * @param string $output HTML output for dropdown list of pages.
* @param array $parsed_args The parsed arguments array. See wp_dropdown_pages()
* for information on accepted arguments.
* @param WP_Post[] $pages Array of the page objects.