Custom Taxonomy WP_Query

J'essaie d'afficher un custom post type qui a personnalisé la taxonomie, mais je ne suis pas du tout avoir de la chance. Rien ne s'affiche. J'apprécie toute l'aide.

Type de poste = galerie

Personnalisé Taxonomie slug = photoarea

Le "photoarea' je veux afficher = quatrième

Custom Taxonomy WP_Query

<?php 

$args = array( 
               'post_type' => 'gallery', 
               'tax_query' => array(
                   array(
                        'taxonomy' => 'photoarea',
                        'field' => 'fourth', 
                        )
                ),
               'posts_per_page' => 10,
              );

$the_query = new WP_Query( $args );


if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();

     the_post_thumbnail();

 endwhile; endif;

wp_reset_query();

?> 

OriginalL'auteur this_guy | 2013-08-16