Skip to content

Instantly share code, notes, and snippets.

@jandrodev
Created May 26, 2015 07:54
Show Gist options
  • Save jandrodev/d6073c8922ff3915588e to your computer and use it in GitHub Desktop.
Save jandrodev/d6073c8922ff3915588e to your computer and use it in GitHub Desktop.
Wordpress Basic Query With tax_query
<?php
$args = array(
'post_type' => 'page',
'posts_per_page' => '3',
'tax_query' => array(
array(
'taxonomy' => 'localizacion',
'field' => 'slug',
'terms' => 'home'
)
)
);
$query = new WP_Query( $args );
if(have_posts()) : while($query->have_posts()) : $query->the_post(); ?>
<p><?php the_content(); ?></p>
<?php endwhile; else : ?>
<p class="no-posts"><?php _e('Lo siento, no hay entradas que se ajusten a lo que busca', 'ejemplo'); ?></p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment