有没有在Wordpress的页面上列出循环中所有帖子的帖子ID?
我想在页面上的当前帖子中创建一个导航栏。
Wordpress 3.3
谢谢!
答案 0 :(得分:1)
使用query_posts()
获取所有帖子并循环显示ids,例如:
<?php
// The Query
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
// Reset Query
wp_reset_query();
?>