Created
September 3, 2017 06:44
-
-
Save topleague/a0c8bfb92d4b932a54f10cb167fce870 to your computer and use it in GitHub Desktop.
Remove Unwanted Layout in Genesis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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