Created
January 13, 2016 15:59
-
-
Save CoachBirgit/f4960447fe3bb7b5c666 to your computer and use it in GitHub Desktop.
Set a default layout with the Genesis Framework.
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
<?php | |
//* Do NOT include the opening php tag | |
//* Set content/sidebar as the default layout | |
genesis_set_default_layout( 'content-sidebar' ); | |
//* Set sidebar/content as the default layout | |
genesis_set_default_layout( 'sidebar-content' ); | |
//* Set content/sidebar/sidebar as the default layout | |
genesis_set_default_layout( 'content-sidebar-sidebar' ); | |
//* Set sidebar/sidebar/content as the default layout | |
genesis_set_default_layout( 'sidebar-sidebar-content' ); | |
//* Set sidebar/content/sidebar as the default layout | |
genesis_set_default_layout( 'sidebar-content-sidebar' ); | |
//* Set full-width content as the default layout | |
genesis_set_default_layout( 'full-width-content' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment