如何按号码拨打某些帖子,将其作为特色帖子放置在我模板的特定位置? 我已经阅读了关于粘贴帖子的内容,但我有大约3个地方可以放置我的精选帖子,我想我需要一个循环来获取我定义的数字的帖子。
任何帮助?!
答案 0 :(得分:0)
<?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();
?>