मुझे यकीन नहीं है कि क्यों लेकिन मैंने get_posts()
कुछ डेटा के लिए क्वेरी करने के लिए उपयोग किया है। फिर मैंने उपयोग किया setup_postdata()
... मुझे लगता है कि इसका उपयोग किया गया है ताकि मैं the_permalink()
नए पोस्ट डेटा के साथ फ़ंक्शन आदि का उपयोग कर सकूं?
<?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)
करता हूं तो ठीक है। लेकिन मुझे लगता है कि छोटा संस्करण बेहतर होगा