Advertisement
Guest User

Untitled

a guest
May 28th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. /**
  3. * Full width layout for main shop page
  4. *
  5. * How to use:
  6. * Save this file as `wp-contents/mu-plugins/full-width-shop-page.php`
  7. */
  8. function full_width_shop_page() {
  9. if ( is_shop() ) {
  10. global $ss_layout;
  11.  
  12. $ss_layout->set_layout( 0 );
  13. add_filter( 'shoestrap_display_primary_sidebar', '__return_false', 999 );
  14. add_filter( 'shoestrap_display_secondary_sidebar', '__return_false', 999 );
  15. }
  16. }
  17. add_action( 'wp','full_width_shop_page' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement