Skip to content

Instantly share code, notes, and snippets.

@anatol06
Last active May 6, 2018 16:20
Show Gist options
  • Save anatol06/0117f5fbe9437f50da625e16310cb3d3 to your computer and use it in GitHub Desktop.
Save anatol06/0117f5fbe9437f50da625e16310cb3d3 to your computer and use it in GitHub Desktop.
Get posts except specified cathegory
<?php // Get all posts except Featured
$no_featured_query = new WP_Query(array(
'cat' => '-3',
)); ?>
<?php while($no_featured_query->have_posts()) : ?>
<?php $no_featured_query->the_post(); ?>
<!-- HTML here-->
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment