归档页面,而循环不能正常工作。特定类别发布了5个帖子。但是当我导航到该类别的档案页面时,它只显示3个帖子。
尝试使用显示该特定类别的帖子数量 $ count = $ GLOBALS ['wp_query'] - > found_posts; 它返回正确的帖子数(共5个帖子)。 但是当继续执行while循环时,has_posts()只显示3。
在endwhile之后尝试了wp_reset_query,但没有奏效。 还尝试使用get_categories()函数显示每个类别中的计数数量,它返回正确的计数但在while循环中仅显示3个帖子
以下是archive.php代码。
<div class="row">
<?php
while ( have_posts() ) : the_post();
?>
<div class="col-sm-12 col-md-8">
<div class="blog-post small">
<div class="post-header">
<p class="categories"><a href="#"><?php the_category(', ') ?></a></p>
<h2 class="post-title">
<a href="<? the_permalink();?>"><?php the_title();?></a>
</h2>
<ul class="post-meta">
<li class="date"><?php the_time('F jS, Y') ?></li>
<li class="author">by <a href="<?php the_permalink() ?>"><?php the_author_posts_link(); ?> </a></li>
<li class="comments"><a href="<?php the_permalink() ?>"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></a></li>
</ul>
</div>
<div class="post-cover">
<?php
$post_id=get_the_ID();
$meta_info= get_post_meta($post_id, '_thumbnail_id', true );
$image= wp_get_attachment_image_src( $meta_info, $size = 'full', $icon = false );
?>
<a href="<?php the_permalink();?>">
<img width="367" height="346" src="<?php echo $image[0]; ?>" alt="simple post cover" />
</a>
</div>
<div class="post-body">
<p><?php the_excerpt();?></p>
<div class="align-center">
<a href="<?php the_permalink() ?>" class="btn template-btn-2">Read more</a>
</div>
</div>
</div>
</div>
<?php
endwhile;
?>
</div>
我该怎么办。有什么想法吗?
答案 0 :(得分:0)
如果你还需要的话试试这个:-)
<?php query_posts('showposts=3'); if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p>?php the_time(); ?></p>
<?php the_content(); ?>
<p><?php the_tags(); ?></p>
<?php endwhile;?>
<p><?php next_posts_link(); ?></p>
<p><?php previous_posts_link(); ?></p>
<?php else : ?>
<h1>Not Found</h1>
<p>Silly monkey.</p>
<?php endif; wp_reset_query(); ?>
如果在某人的博客中发现了这个,但可能是谁使用了这个。