Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created July 26, 2012 17:31
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 billerickson/3183357 to your computer and use it in GitHub Desktop.
Save billerickson/3183357 to your computer and use it in GitHub Desktop.
<?php
/**
* Use Full Width Content on Homepage
*
* @author Bill Erickson
* @link http://www.billerickson.net/overriding-options-and-meta
*
* @param string $layout
* @return string
*/
function be_home_layout( $layout ) {
return 'full-width-content';
}
add_filter( 'genesis_pre_get_option_site_layout', 'be_home_layout' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment