Non sono sicuro del perché, ma ho usato get_posts()
per cercare alcuni dati. Poi ho usato setup_postdata()
... Penso che sia usato in modo da poter usare funzioni come the_permalink()
etc con i nuovi dati di post?
<?php foreach ($childPosts as $cp) : setup_postdata($cp); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<?php if (has_post_thumbnail()) : ?>
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail(($hasOutputNotFeaturedDiv) ? 'thumb-small' : null) ?></a>
<?php endif; ?>
<?php the_excerpt(); ?>
<p class="more"><a href="<?php the_permalink() ?>">Read more ...</a></p>
<?php include (TEMPLATEPATH . '/inc/meta.php' ); ?>
</article>
<?php endforeach; ?>
ma sembra che the_excerpt
contenga solo il nuovo valore dei dati post, perché? Trovo che se lo uso echo get_the_permalink($cp)
funziona bene. Ma penso che la versione più corta sarà migliore