Skip to content

Instantly share code, notes, and snippets.

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 carlaizumibamford/1a907e0c672e4e0822bc2fa6dfec69fb to your computer and use it in GitHub Desktop.
Save carlaizumibamford/1a907e0c672e4e0822bc2fa6dfec69fb to your computer and use it in GitHub Desktop.
Excluding Posts By Category Name In WordPress
$id = get_cat_id('Category-Sample');
$q = "cat=-" . $id;
query_posts($q);
if (have_posts()) : while (have_posts()) : the_post();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment