我对posts_nav_link()
函数的索引。php。它可以工作,但不显示旧帖子。当有人点击“下一页”链接时,第一页上的相同帖子正在加载。
这是我正在使用的代码:
<?php if ( is_home ()) {$myquery = new wp_query(\'cat=-41\');}?>
<?php
global $wp_query;
$temp_wp_query = $wp_query;
$wp_query = null;
$wp_query = $myquery;
?>
<!-- Start the look -->
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<?php the_title();?>
<?php
if( has_post_thumbnail()) {
the_post_thumbnail(\'article-thumb\'); }
?>
<?php the_author_posts_link();?>
<?php the_category(\', \');?>
<?php the_time(\'j F, Y\'); ?>.
<?php the_excerpt();?>
<a href="<?php the_permalink();?>">Citeste mai departe</a>
<?php endwhile; ?>
<?php else : ?>
<p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p>
<?php endif; ?><!-- End the loop -->
<?php posts_nav_link( \' \', \'<img src="\' . get_bloginfo(\'stylesheet_directory\') . \'/img/pagina-precedenta.png" align="left" />\', \'<img src="\' . get_bloginfo(\'stylesheet_directory\') . \'/img/pagina-urmatoare.png" align="right" />\' ); ?>
<?php $wp_query = $temp_wp_query;?>
The
posts_nav_link()
功能在上正常工作
category.php
, 仅在上
index.php
我有这个问题,它肯定与我的自定义循环有关,但我无法找出我缺少了什么。