Skip to content

Instantly share code, notes, and snippets.

@cesjam7
Created September 2, 2014 16:20
Show Gist options
  • Save cesjam7/8f3e508fe3b102403cdb to your computer and use it in GitHub Desktop.
Save cesjam7/8f3e508fe3b102403cdb to your computer and use it in GitHub Desktop.
filtrar por post_type y categoria
<?php query_posts( array('post_type' => 'noticias', 'cat' => 104, 'showposts' => 4) );
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<p><?php the_title(); ?></p>
<?php endwhile;
endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment