Advertisement
Guest User

Untitled

a guest
May 25th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /* Remove Sidebar from Shop/category Page */
  2.  
  3. add_action( 'get_header', 'remove_storefront_sidebar' );
  4.  
  5. function remove_storefront_sidebar() {
  6. if ( is_product_category() || is_shop() ) {
  7. remove_action( 'storefront_sidebar', 'storefront_get_sidebar', 10 );
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement