我有一个带有自定义WP查询的页面,用于输出与奖励职位类型相关的不同职位。
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
$args = array(
'posts_per_page' => 2,
'ignore_sticky_posts' => 1,
'post_type' => 'award',
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
's' => $_GET['keyword'],
'paged' => $paged;
);
我正在使用默认的wordpress分页功能
paginate_links( array(
'base' => str_replace( 999999999, '%#%', esc_url( get_pagenum_link( 999999999 ) ) ),
'total' => $query->max_num_pages,
'current' => $paged,
'format' => '?paged=%#%',
'show_all' => false,
'type' => 'plain',
'mid_size' => 3,
'prev_next' => false,
'add_args' => false,
'add_fragment' => '',
));
如果我提交此网址awards/?keyword=test
,则会得到很少的页码的相关结果。如果单击分页上的第2页,则该页面将重定向到此URL awards/page/2/?keyword=test
,并且出现页面未找到错误!如果我访问awards/page/2/
,也会收到同样的错误!我在做什么错了?
如果我可以将查询字符串保留在awards/?page=2&keyword=test
这样的网址中,那也很好。
更新
如果删除奖励自定义帖子类型,但我将帖子保留在数据库中,则使用过滤器的分页应能正常工作。
此外,WP查询位于名为Awards的页面中,其中包含大量奖励。
我的奖励自定义帖子类型:
$cpt = array(
'singular' => 'Article',
'plural' => 'Awards & Press',
'type' => 'award',
'slug' => 'awards'
);
register_post_type( $cpt['type'],
array(
'labels' => array(
'name' => sprintf( '%s', $cpt['plural'] ),
'singular_name' => sprintf( '%s', $cpt['singular'] ),
'add_new' => 'Add New',
'add_new_item' => sprintf( 'Add New %s', $cpt['singular'] ),
'edit' => 'Edit',
'edit_item' => sprintf( 'Edit %s', $cpt['singular'] ),
'new_item' => sprintf( 'New %s', $cpt['singular'] ),
'all_items' => sprintf( 'All %s', $cpt['plural'] ),
'view' => sprintf( 'View %s', $cpt['singular'] ),
'search_items' => sprintf( 'Search %s', $cpt['plural'] ),
'not_found' => sprintf( 'No %s Found', $cpt['plural'] ),
'not_found_in_trash' => sprintf( 'No %s Found In Trash', $cpt['plural'] ),
'parent_item_colon' => ''
),
'description' => 'Create a new item',
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'publicly_queryable' => true,
'has_archive' => false,
'rewrite' => array(
'slug' => $cpt['slug'],
'with_front' => false,
),
'menu_position' => 5,
'show_in_nav_menus' => true,
'menu_icon' => 'dashicons-admin-post',
'hierarchical' => false,
'query_var' => true,
'supports' => array(
'title',
'editor',
'excerpt',
'thumbnail',
)
)
);
另一个更新
如果我更改:
'rewrite' => array(
'slug' => $cpt['slug'],
'with_front' => false,
),
收件人
'rewrite' => false,
使用过滤器进行分页有效,但是我丢失了漂亮的网址awards/post-name/
,它变成了awards/?award=post-name
。
我需要使用过滤器进行分页,同时保持帖子的漂亮网址。
答案 0 :(得分:0)
我相信我找到了答案,但是如果其他人可以确认这是最好的解决方案,我将非常感激:
add_action('init', function() {
add_rewrite_rule('(.?.+?)/page/?([0-9]{1,})/?$', 'index.php?pagename=$matches[1]&paged=$matches[2]', 'top');
});
我将上面的代码添加到functions.php文件中。
解决方案是从这里获取的:https://www.grzegorowski.com/wordpress-rewrite-rules/