diff --git a/src/Menu_Command.php b/src/Menu_Command.php index bb9f6901..e6806530 100644 --- a/src/Menu_Command.php +++ b/src/Menu_Command.php @@ -29,7 +29,7 @@ * * # Assign the 'my-menu' menu to the 'primary' location * $ wp menu location assign my-menu primary - * Success: Assigned location to menu. + * Success: Assigned location primary to menu my-menu. * * @package wp-cli */ @@ -87,7 +87,8 @@ public function create( $args, $assoc_args ) { * ## EXAMPLES * * $ wp menu delete "My Menu" - * Success: 1 menu deleted. + * Deleted menu 'My Menu'. + * Success: Deleted 1 of 1 menus. */ public function delete( $args, $assoc_args ) { diff --git a/src/Menu_Item_Command.php b/src/Menu_Item_Command.php index 19f96cf9..c61d9f7d 100644 --- a/src/Menu_Item_Command.php +++ b/src/Menu_Item_Command.php @@ -18,7 +18,7 @@ * * # Delete menu item * $ wp menu item delete 45 - * Success: 1 menu item deleted. + * Success: Deleted 1 of 1 menu items. */ class Menu_Item_Command extends WP_CLI_Command { @@ -355,7 +355,7 @@ public function update( $args, $assoc_args ) { * ## EXAMPLES * * $ wp menu item delete 45 - * Success: 1 menu item deleted. + * Success: Deleted 1 of 1 menu items. * * @subcommand delete */ diff --git a/src/Menu_Location_Command.php b/src/Menu_Location_Command.php index 508ff486..540c87e4 100644 --- a/src/Menu_Location_Command.php +++ b/src/Menu_Location_Command.php @@ -19,7 +19,7 @@ * * # Assign the 'primary-menu' menu to the 'primary' location * $ wp menu location assign primary-menu primary - * Success: Assigned location to menu. + * Success: Assigned location primary to menu primary-menu. * * # Remove the 'primary-menu' menu from the 'primary' location * $ wp menu location remove primary-menu primary