WP_Query如何修改分页规则?

how to modify the pagination rules by WP_Query?

我想为我的自定义 post 类型 "Employes" 进行分页,但是如果我使用 WP_Query,我可以使用属性 post_per_page,但是URL 变成了这样.../page/2。我想通过这种方式改变 URL ...#2,因为以前的方式我不能使用标签内容,谁能帮帮我?非常感谢!

使用这个:

function custom_pagination_base() {
 global $wp_rewrite;

 $wp_rewrite->pagination_base = '{pagination-url-here}';

 $wp_rewrite->flush_rules();
}
add_action( 'init', 'custom_pagination_base' );

将这段代码粘贴到主题中function.php {pagination-url-here} 替换您的 uri 段