From 6a64b20408733ce2b5fb7c95def8019ffe211c74 Mon Sep 17 00:00:00 2001 From: Kailey Lampert Date: Wed, 25 Dec 2024 11:11:25 -0800 Subject: [PATCH] Remove 'Total size' from alloptions cli --- wp-cli/alloptions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-cli/alloptions.php b/wp-cli/alloptions.php index 5345d18e73..5e6118d6be 100644 --- a/wp-cli/alloptions.php +++ b/wp-cli/alloptions.php @@ -64,7 +64,6 @@ public function find( $args, $assoc_args ) { WP_CLI\Utils\format_items( $assoc_args['format'], $options, array( 'name', 'size' ) ); - WP_CLI::line( sprintf( 'Total size of all option values for this blog: %s', size_format( $total_size ) ) ); WP_CLI::line( sprintf( 'Size of serialized alloptions for this blog: %s', size_format( strlen( serialize( $alloptions ) ) ) ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize WP_CLI::line( "\tuse `wp option get ` to view a big option" ); WP_CLI::line( "\tuse `wp option delete ` to delete a big option" );