Skip to content

Instantly share code, notes, and snippets.

@krohn
Created September 17, 2014 13:49
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 krohn/0059487bad67c75e8f3d to your computer and use it in GitHub Desktop.
Save krohn/0059487bad67c75e8f3d to your computer and use it in GitHub Desktop.
No "Quick Tips" on the homepage
// No "Quick Tips" on the homepage
// http://www.wprecipes.com/how-to-prevent-posts-from-a-particular-category-to-be-displayed-in-wordpress-loop
function preventHomepageTips($query) {
if($query->is_home() && $query->is_main_query()) {
$query->set('cat', '-40'); // 40 is Quick Tips's category ID
}
}
add_action('pre_get_posts', 'preventHomepageTips');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment