Skip to content

Instantly share code, notes, and snippets.

@CEscorcio
Created July 9, 2013 17:11
Show Gist options
  • Save CEscorcio/5959204 to your computer and use it in GitHub Desktop.
Save CEscorcio/5959204 to your computer and use it in GitHub Desktop.
Exlude category from loop
<?php
$args=array(
'category__not_in' => array(8),
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 5,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
endwhile;
}
wp_reset_query();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment