我试着从我刚刚创建的一个帖子类别中获取postthumnail。这是我的密码
<?php while ( have_posts() ) : the_post(); ?>
<?php if ( has_post_thumbnail()) { ?>
<?php } ?>
<?php endwhile; // end of the loop. ?>
<?php // on va chercher les projets ?>
<?php
$args = array(
\'post_type\' => "projet",
\'showposts\' => 6,
);
// fonction qui va créer une requete et chercher les données
query_posts( $args );
?>
<?php while ( have_posts() ) : the_post(); ?>
<section>
<a class="link_fx pushup" href="<?php the_permalink(); ?>">
<figure >
<?php
if (class_exists(\'MultiPostThumbnails\')) :
MultiPostThumbnails::the_post_thumbnail(get_post_type(), \'secondary-image-projet\',);
endif;?>
<figcaption>
<p class="description_item"> <?php the_excerpt(); ?>
</p>
</figcaption>
</figure>
</a>
<!---End projets-->
</section>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_query(); //pour reinitialiser la boucle par défault ?>
我需要添加什么才能只获得一类“projet”?如果有人能帮助我?