我在localhost上测试WordPress,发帖看看它是如何工作的,一切都很好,直到我在一个页面上有很多文章而且我不得不使用分页转到第二页,我点击了第二页,但我找到了404 Not Found页面。
我找了大约2-3个小时,尝试了每个功能,每个例子但结果都一样。
主页是静态首页,称为登陆,所有文章都设置为博客页面。
来自index.php的我的php代码:
<div class="container-medium">
<div class="row">
<?php while(have_posts()) : the_post(); ?>
<div class="col-xs-12 col-sm-12 col-md-12">
<?php the_post_thumbnail('post-thumbnail', array( 'class' => "img-responsive desaturate attachment-post-thumbnail")); ?>
<h3 class="blog-post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="row">
<div class="col-sm-12"><p class="blog-post-text"><?php echo get_excerpt(); ?></p></div>
<div class="col-sm-12"><a class="btn btn-sm btn-readmore" href="<?php echo get_permalink(); ?>">Read more <i class="icon-right-open"></i></a></div>
</div>
<hr class="dotted">
</div>
<?php endwhile; wp_reset_query(); ?>
</div> <!-- end .row -->
<?php if ( have_posts() ) : ?>
<!-- Add the pagination functions here. -->
<!-- Start of the main loop. -->
<?php while ( have_posts() ) : the_post(); ?>
<!-- the rest of your theme's main loop -->
<?php endwhile; ?>
<!-- End of the main loop -->
<!-- Add the pagination functions here. -->
<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div>
<div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); ?></div>
<?php else : ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div> <!-- end .container-medium -->
我读了很多类似的问题,但我没有得到我想要的结果。
谢谢!
PS:PHP初学者
答案 0 :(得分:1)
在循环
上面写这个<?php
$post_query = query_posts(array(
'post_type' => 'cover', // You can add a custom post type if you like
'paged' => get_query_var('paged', 1),
'posts_per_page' => 1
));
?>
在底部
<?php
global $wp_query;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages
) );
?>