Guest User

Untitled

a guest
Dec 11th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_filter( 'woo_portfolio_gallery_exclude', 'woo_custom_portfolio_gallery_slugs', 10 );
  2.  
  3. function woo_custom_portfolio_gallery_slugs ( $slugs ) {
  4. if ( is_page( 'portfolio' ) ) {
  5. $slugs = 'lakes';
  6. }
  7.  
  8. return $slugs;
  9. } // End woo_custom_portfolio_gallery_slugs()
Add Comment
Please, Sign In to add comment