Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //This version forces a new layout:
- add_filter( 'genesis_site_layout', 'force_layout' );
- function force_layout($opt) {
- if( is_category()) {
- $opt = 'full-width-content';
- return $opt;
- }}
- //This version simply removes the sidebar call:
- add_action( 'genesis_before', 'remove_sidebar_certainpages' );
- function remove_sidebar_certainpages() {
- if ( is_page(25) ) {
- // stuff
- remove_action( 'genesis_after_content', 'genesis_get_sidebar' );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement