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();