Skip to content

Instantly share code, notes, and snippets.

@cesjam7
Created September 2, 2014 22:15
Show Gist options
  • Save cesjam7/ace4a6584b0eb4c2fd64 to your computer and use it in GitHub Desktop.
Save cesjam7/ace4a6584b0eb4c2fd64 to your computer and use it in GitHub Desktop.
taxonomia.php
$args = array(
'post_type'=> 'noticias',
'showposts'=> '4',
'tax_query' => array(
array(
'taxonomy' => 'categoria',
'field' => 'slug',
'terms' => 'educacion',
),
),
);
query_posts( $args ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<p><?php the_title(); ?></p>
<?php endwhile;
wp_reset_query();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment