Neden olduğundan emin değilim ama get_posts()
bazı verileri sorgulamak için kullandım . Sonra kullandım setup_postdata()
... the_permalink()
Yeni yazı verileriyle vs gibi fonksiyonları kullanabilmem için kullanıldığını düşünüyorum.
<?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; ?>
ancak görünen o ki sadece the_excerpt
yeni yazı verisi değeri var, neden böyle? Eğer kullanırsam echo get_the_permalink($cp)
işe yarıyor. Ama kısa versiyonun daha iyi olacağını düşünüyorum