Skip to content

Instantly share code, notes, and snippets.

@Rubsel
Last active January 24, 2020 13:05
Show Gist options
  • Save Rubsel/280f9544bc53552d8d7c4dd0c15be6d4 to your computer and use it in GitHub Desktop.
Save Rubsel/280f9544bc53552d8d7c4dd0c15be6d4 to your computer and use it in GitHub Desktop.
Full width Gutenberg
<?php
function radish_gutenberg_full_width() {
echo '<style>
body.gutenberg-editor-page .editor-post-title__block, body.gutenberg-editor-page .editor-default-block-appender, body.gutenberg-editor-page .editor-block-list__block {
max-width: none !important;
}
.block-editor__container .wp-block {
max-width: none !important;
}
</style>';
}
add_action( 'admin_head', 'radish_gutenberg_full_width' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment