Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
56
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 pa_brand taxonomy
  2. function bowerspace_remove_woo_pa_brand_sidebar( $class ) {
  3. if ( is_tax( 'pa_brand' ) ) {
  4. $class = 'full-width';
  5. }
  6. return $class;
  7. }
  8. add_filter( 'wpex_post_layout_class', 'bowerspace_remove_woo_pa_brand_sidebar', 40 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement