Skip to content

Instantly share code, notes, and snippets.

@phpbits
Last active May 17, 2019 04:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phpbits/1bc8134fc78354a31c859f5168ac67e1 to your computer and use it in GitHub Desktop.
Save phpbits/1bc8134fc78354a31c859f5168ac67e1 to your computer and use it in GitHub Desktop.
Change Gutenberg Blocks Width to Match Page Template
<?php
//add theme support for template blocks width
add_theme_support('editorskit-template-block-sizes', array(
'default' => array(
'default' => '700px',
'wide' => '1000px',
'full' => '1200px',
),
'page-templates/landing.php' => array(
'default' => '500px',
'wide' => '900px',
'full' => '1200px',
)
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment