From fc53f8637e328759eab924d240b75f5c70941a35 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 31 Jul 2017 10:49:03 +0100 Subject: [PATCH] Add theme support for wide images --- functions.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/functions.php b/functions.php index a314832..43b5505 100644 --- a/functions.php +++ b/functions.php @@ -53,6 +53,10 @@ function gutenbergtheme_setup() { 'gallery', 'caption', ) ); + + add_theme_support( 'gutenberg', array( + 'wide-images' => true, + ) ); } endif; add_action( 'after_setup_theme', 'gutenbergtheme_setup' );