Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created April 29, 2014 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartduff/11402159 to your computer and use it in GitHub Desktop.
Save stuartduff/11402159 to your computer and use it in GitHub Desktop.
woo_blog_template_query_args
add_filter( 'woo_blog_template_query_args', 'blog_exclude_posts' );
function blog_exclude_posts( $args ) {
$args['post_type'] = 'post';
$args['paged'] = $paged;
$args['category_name'] = 'news';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment