我有一個我希望添加分頁的活動頁面。然而,由於它是一種自定義的帖子類型,我覺得它很難。我設法爲我的新聞頁面分頁工作,但我無法獲得事件頁面的相同結果。這裏是我的活動頁面在Wordpress中爲自定義帖子類型創建分頁
<?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')); ?>
這不工作要麼。但是,如果我完全刪除該行,則會顯示新聞發佈類型。我很難過!
「事件」類別屬於帖子類型分類權嗎? – loQ