Tôi không chắc tại sao nhưng tôi đã sử dụng get_posts()
để truy vấn một số dữ liệu. Sau đó, tôi đã sử dụng setup_postdata()
... Tôi nghĩ rằng nó được sử dụng để tôi có thể sử dụng các chức năng như the_permalink()
vv với dữ liệu bài đăng mới?
<?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; ?>
nhưng có vẻ như chỉ the_excerpt
chứa giá trị dữ liệu bài mới, tại sao vậy? Tôi thấy rằng nếu tôi sử dụng echo get_the_permalink($cp)
nó hoạt động ok. Nhưng tôi nghĩ phiên bản ngắn hơn sẽ tốt hơn