Voglio interrogare 6 post, ma solo quelli a cui è allegata un'immagine in primo piano. Sto usando il meta_key
metodo per questo con WP_Query
come tale:
$args = array(
'post_type' => 'post',
'meta_key' => '_thumbnail_id',
'post_count' => 6 );
$query = new WP_Query($args);
Seguito da
<?php while($query->have_posts()) : $query->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_post_thumbnail('thumbnail'); ?>
<?php endwhile; ?>
Questo non sembra funzionare. La query restituisce più di 6 post e anche quelli che non hanno un'immagine in primo piano. Qualche idea su cosa ho sbagliato qui?
@chip: var_dump($query);
dà un grande risultato quindi l'ho pubblicato in un pastebin
var_dump( $query )
?