From 5402cdd3f7cd9d27ac8026840892b5c9ba46762c Mon Sep 17 00:00:00 2001 From: Corey McKrill <916023+coreymckrill@users.noreply.github.com> Date: Thu, 24 Oct 2019 21:16:16 -0700 Subject: [PATCH] Theme: Update `$content_width` to 960 This matches the width of the content in the global header and the About page. --- themes/wporg-5ftf/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/wporg-5ftf/functions.php b/themes/wporg-5ftf/functions.php index 3cd92a5..d2eaef0 100644 --- a/themes/wporg-5ftf/functions.php +++ b/themes/wporg-5ftf/functions.php @@ -113,7 +113,7 @@ add_action( 'after_setup_theme', __NAMESPACE__ . '\setup' ); * @global int $content_width */ function content_width() { - $GLOBALS['content_width'] = apply_filters( 'wporg_plugins_content_width', 640 ); + $GLOBALS['content_width'] = 960; } add_action( 'after_setup_theme', __NAMESPACE__ . '\content_width', 0 );