Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created May 10, 2015 15:25
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 reasonstousegenesis/5e875a7440eaccce4bb2 to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/5e875a7440eaccce4bb2 to your computer and use it in GitHub Desktop.
Override the default layout option with Genesis (longhand version)
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Override the default layout option with Genesis (longhand version)
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/default-layout/
*/
add_filter( 'genesis_pre_get_option_site_layout', 'rtug_default_layout' );
function rtug_default_layout( $layout ) {
return 'full-width-content';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment