gpt4 book ai didi

php - Wordpress 自定义帖子分页 404 错误

转载 作者:搜寻专家 更新时间:2023-10-31 21:00:39 24 4
gpt4 key购买 nike

我整天都在四处寻找答案,但没有找到答案。

我创建了一个自定义帖子类型,因此我可以在页面模板上显示帖子,但分页不起作用我收到 404 错误

也许你们中的一些人可以指导我并告诉我问题是什么。这是 site .

使用此密码 broncosrule。谢谢。

这是代码。

自定义页面模板:

<?php
/**
* Template Name: Custom Page
* The custom page template file
*/
?>

<?php get_header(); ?>



<?php

$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;

$custom_args = array(
'post_type' => 'trestleboard',
'posts_per_page' => 1,
'paged' => $paged

);

$custom_query = new WP_Query( $custom_args ); ?>

<?php if ( $custom_query->have_posts() ) : ?>

<!-- the loop -->
<?php while ( $custom_query->have_posts() ) : $custom_query->the_post(); ?>
<article class="loop">
<!--<h3><?php the_title(); ?></h3>-->
<div class="content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; ?>
<!-- end of the loop -->

<!-- pagination here -->
<?php
if (function_exists(custom_pagination)) {
custom_pagination($custom_query->max_num_pages,"",$paged);
}
?>

<?php wp_reset_postdata(); ?>

<?php else: ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>

<?php get_footer(); ?>

Functions.php 文件

// Our custom post type function
function custom_pagination($numpages = '', $pagerange = '', $paged='') {

if (empty($pagerange)) {
$pagerange = 2;
}

/**
* This first part of our function is a fallback
* for custom pagination inside a regular loop that
* uses the global $paged and global $wp_query variables.
*
* It's good because we can now override default pagination
* in our theme, and use this function in default queries
* and custom queries.
*/
global $paged;
if (empty($paged)) {
$paged = 1;
}
if ($numpages == '') {
global $wp_query;
$numpages = $wp_query->max_num_pages;
if(!$numpages) {
$numpages = 1;
}
}

/**
* We construct the pagination arguments to enter into our paginate_links
* function.
*/
$pagination_args = array(
'base' => get_pagenum_link(1) . '%_%',
'format' => 'page/%#%',
'total' => $numpages,
'current' => $paged,
'show_all' => False,
'end_size' => 1,
'mid_size' => $pagerange,
'prev_next' => True,
'prev_text' => __('&laquo;'),
'next_text' => __('&raquo;'),
'type' => 'plain',
'add_args' => false,
'add_fragment' => ''
);

$paginate_links = paginate_links($pagination_args);

if ($paginate_links) {
echo "<nav class='custom-pagination'>";
echo "<span class='page-numbers page-num'>Page " . $paged . " of " . $numpages . "</span> ";
echo $paginate_links;
echo "</nav>";
}

}

最佳答案

我认为问题的发生是因为您的页面别名与您的自定义帖子类型别名相同。

您可以通过临时修改页面 slug 来快速检查这是否是问题所在。

选项:

  • 修改自定义帖子类型的重写规则,或者
  • 修改页面标签

祝你好运!

关于php - Wordpress 自定义帖子分页 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43616721/

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