Skip to content

Instantly share code, notes, and snippets.

@CoachBirgit
Created January 13, 2016 15:59
Show Gist options
  • Save CoachBirgit/f4960447fe3bb7b5c666 to your computer and use it in GitHub Desktop.
Save CoachBirgit/f4960447fe3bb7b5c666 to your computer and use it in GitHub Desktop.
Set a default layout with the Genesis Framework.
<?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