Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created September 14, 2012 15:30
Show Gist options
  • Save stuartduff/3722660 to your computer and use it in GitHub Desktop.
Save stuartduff/3722660 to your computer and use it in GitHub Desktop.
Woo Filter Portfolio Categories
add_filter( 'woo_portfolio_gallery_exclude', 'woo_custom_portfolio_exclude');
function woo_custom_portfolio_exclude( $exclude_str ) {
if (is_page('test')) {
$exclude_str = 'logos';
}
return $exclude_str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment