We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c5b164 commit 123a980Copy full SHA for 123a980
Permalinks/change_permalinks_base.php
@@ -0,0 +1,10 @@
1
+<?php
2
+
3
+add_action('init', 'my_change_permalink_base');
4
+function my_change_permalink_base() {
5
+ global $wp_rewrite;
6
7
+ $wp_rewrite->pagination_base = 'page';
8
+ $wp_rewrite->search_base = 'search';
9
+ $wp_rewrite->author_base = 'author';
10
+}
0 commit comments