gpt4 book ai didi

php - 分页 next_posts_link() 和 previous_posts_link() 不适用于 wordpress 自定义帖子类型

转载 作者:行者123 更新时间:2023-12-04 17:57:25 25 4
gpt4 key购买 nike

我一直在尝试在我的 wordpress 自定义帖子类型上显示下一页和上一页。但是链接没有生成。我做错了什么?

这是我的代码:

<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$video = array('post_type' => 'e_tv', 'posts_per_page' => 1,'order' => 'ASC', 'paged' => $paged);
$tv_query = new WP_Query($video);
while ($tv_query->have_posts()) : $tv_query->the_post();
?>
<!--video1-->
<section class="e_tv">
<h4><?php the_title()?></h4>
<?php the_content(); ?>
</section>
<!--/video1-->



<?php
endwhile;
?>
<div class="e_sep"></div>

<section class="e_nxtprev">
<div class="e_next"><?php previous_posts_link('%link', 'PREVIOUS PAGE', $tv_query->max_num_pages) ?></div>
<div class="e_prev"><?php next_posts_link('%link', 'NEXT PAGE', $tv_query->max_num_pages) ?></div>
</section>

非常感谢您的帮助!

最佳答案

你可以从下面的 url 查看旧的讨论,

https://wordpress.org/support/topic/pagination-with-custom-post-type-listing

特别寻找rafaelxy & bigevilbrain 给出的答案

关于php - 分页 next_posts_link() 和 previous_posts_link() 不适用于 wordpress 自定义帖子类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39188871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com