How to change pagination base from slash to query form?
Can this function...
function custom_pagination_base() {
global $wp_rewrite;
$wp_rewrite-pagination_base = 'p';
$wp_rewrite-flush_rules();
}
add_action( 'init', 'custom_pagination_base' );
...be somehow used to change the from of the url from "page/2/" not to "p/2/" but to "?p=2"?
Topic url-rewriting permalinks pagination Wordpress
Category Web