Wordpress静态首页搜索分页

时间:2014-11-17 19:06:20

标签: php wordpress pagination

我的wordpress网站上有一个静态首页,显示我的帖子。目前它显示了10个帖子,我希望能够点击“下一页”查看查询中的下10个帖子,依此类推。我尝试让分页工作,但看起来我无法将其与我的搜索查询相关联。

这是我的问题:

<?php 
query_posts(
array(  'post_type' => 'post',
        'order'     => 'DESC',
        'meta_key' => 'cf_votes',
        'orderby'   => 'meta_value_num',
        'posts_per_page' => 10

)
);
?>

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>

这是我尝试过的分页:

<?php
global $wp_query;

$big = 999999999;

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
) );
?>

所以基本上我能够完美地看到前10个帖子。但是没有其他方法可以看到更多帖子。

1 个答案:

答案 0 :(得分:0)

Wordpress Codex在分页问题上非常全面,我建议你看看:

http://codex.wordpress.org/Pagination#Adding_the_.22paged.22_parameter_to_a_query

有专门针对静态封面的部分。

类似的东西:

<?php 
if ( get_query_var('paged') ) { $paged = get_query_var('paged'); }
elseif ( get_query_var('page') ) { $paged = get_query_var('page'); }
else { $paged = 1; }

$args = array(
  'posts_per_page' => 3,
  'paged' => $paged
);

query_posts($args); 

?>

<?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; ?>