Created
November 1, 2017 22:12
-
-
Save anwerashif/6ff22274c087fc33b982c2f7f54cbf6f to your computer and use it in GitHub Desktop.
Unregister Default Layouts Except sidebar-content and full-width 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
<?php | |
// Do NOT include the opening PHP tag | |
// Unregister default layouts | |
genesis_unregister_layout( 'content-sidebar' ); | |
genesis_unregister_layout( 'content-sidebar-sidebar' ); | |
genesis_unregister_layout( 'sidebar-sidebar-content' ); | |
genesis_unregister_layout( 'sidebar-content-sidebar' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment