我不确定为什么,但是我曾经get_posts()
查询过一些数据。然后我用了setup_postdata()
...我想用了它,这样我就可以the_permalink()
在新的发布数据中使用诸如etc之类的功能?
<?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; ?>
但是似乎只the_excerpt
包含新的帖子数据值,为什么呢?我发现如果我使用echo get_the_permalink($cp)
它也可以。但我认为较短的版本会更好