Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何通过他们的号码调用某些帖子,将它们作为特色帖子放置在我模板的特定位置?我读过关于粘性帖子的文章,但我有大约 3 个地方可以放置我的精选帖子,我想我需要一个循环来按我定义的编号获取帖子。
任何帮助?!
<?php // The Query $query = new WP_Query( 'p=7' ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Post Data wp_reset_postdata(); ?>