我想为我的自定义帖子类型“Employes”进行分页,但是如果我使用WP_Query,我可以使用属性post_per_page,但URL改变如下... / page / 2。我希望通过这种方式更改URL ...#2,因为前一种方式我无法使用标签内容,谁可以帮助我?非常感谢你!
答案 0 :(得分:0)
使用此:
function custom_pagination_base() {
global $wp_rewrite;
$wp_rewrite->pagination_base = '{pagination-url-here}';
$wp_rewrite->flush_rules();
}
add_action( 'init', 'custom_pagination_base' );
将此代码粘贴到theme function.php中 {pagination-url-here}替换你的uri片段