Skip to content

Instantly share code, notes, and snippets.

@brichards
Created January 8, 2013 15:07
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 brichards/4484483 to your computer and use it in GitHub Desktop.
Save brichards/4484483 to your computer and use it in GitHub Desktop.
Layout Override
<?php
// Force a one column layout if the user is not logged in
add_filter( 'get_theme_layout', 'my_layout_override' );
function my_layout_override( $layout ) {
if ( ! is_user_logged_in() )
$layout = 'layout-one-col';
return $layout;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment