Skip to content

Instantly share code, notes, and snippets.

@itsdavidmorgan
Last active November 19, 2018 16:49
Show Gist options
  • Save itsdavidmorgan/5dcbbe2aa82ffa21e6b28034613608d4 to your computer and use it in GitHub Desktop.
Save itsdavidmorgan/5dcbbe2aa82ffa21e6b28034613608d4 to your computer and use it in GitHub Desktop.
WordPress Theme Support For Wide And Full Alignment Blocks
function organic_origin_setup() {
/*
* Enable support for wide alignment class for Gutenberg blocks.
*/
add_theme_support( 'align-wide' );
}
add_action( 'after_setup_theme', 'organic_origin_setup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment