我有一个活动页面,我想添加分页。但是,由于它是一个自定义的帖子类型,我发现它相当困难。我已经设法为我的新闻页面设置了分页,但是我无法在事件页面中获得相同的结果。这是我的活动页面代码
<?php
get_header();
get_sidebar('left');
?>
<article class="content-main events" role="main" id="post-<?php the_ID() ?>">
<?php include 'breadcrumbs.php'; ?>
<?php query_posts(array('posts_per_page'=>'2')); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="news-post">
<h1><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h1>
<?php the_excerpt() ?>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
<!--Pagination-->
<?php echo paginate_links( $args ) ?>
<?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
) );
?>
</article><!-- //.content-main -->
<?php
get_footer();
如果我尝试更改此
<?php query_posts(array('posts_per_page'=>'2')); ?>
到这个
<?php query_posts(array('category_name'=>'events','posts_per_page'=>'2')); ?>
这也不起作用。但是,如果我完全删除该行,它会显示新闻帖子类型。我很难过!
答案 0 :(得分:3)
自定义帖子类型的分页应与普通帖子相同。
如果您查看默认主题TwentyEleven,您可以看到他们是如何做到的。
基本上他们使用 next_posts_link()和 previous_posts_link()函数。
你可以在functions.php&gt;中看一下。的 twentytwelve_content_nav(); 强>
干杯,
答案 1 :(得分:0)
你需要添加全局$ paged然后在你的数组中传递给WP_Query你需要添加'paged'=&gt; $分页
“&GT;<?php
global $paged;
$temp = $wp_query;
$wp_query = null;
$wp_query = new WP_Query( array('post_type' => 'yourcustomepost','posts_per_page' => 2, 'paged' => $paged ) ); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="news-post">
<h1><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h1>
<?php the_excerpt() ?>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
<!--Pagination-->
<?php echo paginate_links( $args ) ?>
<?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
) );
?>
</article><!-- //.content-main -->
<?php
答案 2 :(得分:0)
只需在functions.php文件中替换以下函数即可 注意:在后端设置 - &gt;阅读 - &gt;每页发布:将此值设置为一个
function twentyeleven_content_nav( $html_id )
{
global $wpdb;
global $wp_query;
if ( $wp_query->max_num_pages > 1 ) : ?>
<nav id="<?php echo esc_attr( $html_id ); ?>">
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
<div class="nav-previous">
<?php next_posts_link( __( ' Previous', 'twentyeleven' ) ); ?>
<?php
$count = $wpdb->get_var( "SELECT COUNT(*) FROM wp_posts where post_type='post' and post_content<>''" );
for($j=1;$j<=$count;$j++)
{
echo "<a href='?paged=$j'> $j < </a>";
}
?>
<?php previous_posts_link( __( 'Next', 'twentyeleven' ) ); ?>
</div>
</nav><!-- #nav-above -->
<?php endif;
}