Skip to content

Instantly share code, notes, and snippets.

@authentikHQ
Created October 29, 2018 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save authentikHQ/b1021ab856052c8c8cb4acf5dd85a7e9 to your computer and use it in GitHub Desktop.
Save authentikHQ/b1021ab856052c8c8cb4acf5dd85a7e9 to your computer and use it in GitHub Desktop.
Set a default site 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