From 35733e69b9ea075f8bc7783d72fd2c1381b1e968 Mon Sep 17 00:00:00 2001 From: Ari Stathopoulos Date: Tue, 1 Jun 2021 09:04:36 +0300 Subject: [PATCH] Remove content_width recommendations --- checks/content-width.php | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 checks/content-width.php diff --git a/checks/content-width.php b/checks/content-width.php deleted file mode 100644 index 4e1a0fb7..00000000 --- a/checks/content-width.php +++ /dev/null @@ -1,31 +0,0 @@ -error[] = sprintf( - '%s: %s', - __( 'RECOMMENDED', 'theme-check' ), - __( 'No content width has been defined. Example:
if ( ! isset( $content_width ) ) $content_width = 900;
', 'theme-check' ) - ); - } - - return true; - } - - function getError() { - return $this->error; - } -} -$themechecks[] = new ContentWidthCheck();