Advertisement
BlueSquares

Remove WordPress Sidebar from Page in StudioPress

May 26th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. //This version forces a new layout:
  2. add_filter( 'genesis_site_layout', 'force_layout' );
  3. function force_layout($opt) {
  4.  if( is_category()) {
  5.     $opt = 'full-width-content';
  6.     return $opt;
  7. }} 
  8.  
  9.  
  10. //This version simply removes the sidebar call:
  11. add_action( 'genesis_before', 'remove_sidebar_certainpages' );
  12.  
  13. function remove_sidebar_certainpages() {
  14. if ( is_page(25) ) {
  15. // stuff
  16. remove_action( 'genesis_after_content', 'genesis_get_sidebar' );
  17.  
  18. }
  19. } 
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement