我不知道为什么,但是当我想要显示已打开评论的帖子时,它会显示最近10篇帖子中的帖子(取决于阅读菜单中有多少),所以帖子位于第一页。
我的代码:
<?php
// The Query
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post(); ?>
<?php
$PostID = get_the_ID();
if (comments_open( $post_id )) { ?>
<?php p2_load_entry(); ?>
<?php } ?>
<?php endwhile;
// Reset Query
wp_reset_query();
?>
这是我的档案:
<?php
/**
* Static page template.
Template Name: test
*
* @package P2
*/
?>
<?php get_header(); ?>
<ul id="postlist">
<?php
query_posts( $args );
while ( have_posts() ) : the_post(); ?>
<?php
$PostID = get_the_ID();
if (comments_open( $post_id )) { ?><?php p2_load_entry(); ?>
<?php } ?>
<?php endwhile;
wp_reset_query();
?>
</ul>
<?php get_footer(); ?>