Created
September 2, 2014 22:15
-
-
Save cesjam7/ace4a6584b0eb4c2fd64 to your computer and use it in GitHub Desktop.
taxonomia.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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