Skip to content

Instantly share code, notes, and snippets.

@topleague
Created September 3, 2017 06:44
Show Gist options
  • Save topleague/a0c8bfb92d4b932a54f10cb167fce870 to your computer and use it in GitHub Desktop.
Save topleague/a0c8bfb92d4b932a54f10cb167fce870 to your computer and use it in GitHub Desktop.
Remove Unwanted Layout in Genesis
//* Remove content/sidebar layout
genesis_unregister_layout( 'content-sidebar' );
//* Remove sidebar/content layout
genesis_unregister_layout( 'sidebar-content' );
//* Remove content/sidebar/sidebar layout
genesis_unregister_layout( 'content-sidebar-sidebar' );
//* Remove sidebar/sidebar/content layout
genesis_unregister_layout( 'sidebar-sidebar-content' );
//* Remove sidebar/content/sidebar layout
genesis_unregister_layout( 'sidebar-content-sidebar' );
//* Remove full-width content layout
genesis_unregister_layout( 'full-width-content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment