Last active
November 19, 2018 16:49
-
-
Save itsdavidmorgan/5dcbbe2aa82ffa21e6b28034613608d4 to your computer and use it in GitHub Desktop.
WordPress Theme Support For Wide And Full Alignment Blocks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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