0
我有一個自定義帖子類型稱爲標準(標準)。我正在嘗試構建一個每頁最多12個帖子的歸檔頁面。我很難讓導航/分頁顯示出來。自定義帖子類型導航導航
<section class='no-padding-top border-bottom triple-margin-bottom triple-padding-bottom'>
<div class='container'>
<div class='row'>
<div class='col-md-1'></div>
<div class='col-md-10 text-center'>
<?php
$args = array(
'post_type' => 'the-standard',
'orderby' => 'asc',
'posts_per_page' => 12,
'paged' => $paged,
);
$issues = new WP_Query($args);
if($issues->have_posts()) {
while($issues->have_posts()) {
$issues->the_post();
?>
<p><?php the_date();?><br />
<a href="<?php the_permalink(); ?>"><span class='no-margin bold-font-name'><?php the_title(); ?></span> - <?php the_field('page-subheader'); ?></a>
</p>
<?php
}
}
else {
echo 'Nothing to see here. Keep moving.';
}
?>
<p class='pull-left'><?php previous_posts_link('Next'); ?></p>
<p class='pull-right'><?php next_posts_link('Previous'); ?></p>
</div>
</div class="col-md-1"></div>
</div>
</div>
</section>
不是在頁面模板中創建新的WP_Query,而是嘗試爲該帖子類型創建存檔模板(將其命名爲「archive-the-standard.php」並修改該帖子類型的現有存檔查詢,而不是「將您的擁有」)。這使得分頁更容易 – Ennui
看着'pre_get_posts'動作鉤子和'$ query-> set'函數來修改主查詢 – Ennui
Ennui,謝謝你的提示。你知道在哪裏可以找到一些有關使用適當的查詢設置歸檔頁面的文檔嗎? – mattfiedler