diff --git src/wp-content/themes/twentytwentyone/functions.php src/wp-content/themes/twentytwentyone/functions.php
index f163e394df..4631df7d69 100644
--- src/wp-content/themes/twentytwentyone/functions.php
+++ src/wp-content/themes/twentytwentyone/functions.php
@@ -375,9 +375,13 @@ add_action( 'widgets_init', 'twenty_twenty_one_widgets_init' );
  * @return void
  */
 function twenty_twenty_one_content_width() {
-	// This variable is intended to be overruled from themes.
-	// Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}.
-	// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
+	/**
+	 * Filters Twenty Twenty content width of the theme.
+	 *
+	 * @since Twenty Twenty-One 1.0
+	 *
+	 * @param int $content_width Content width in pixels.
+	 */
 	$GLOBALS['content_width'] = apply_filters( 'twenty_twenty_one_content_width', 750 );
 }
 add_action( 'after_setup_theme', 'twenty_twenty_one_content_width', 0 );
