Created
November 23, 2015 21:24
-
-
Save eltondev/8eb7fb60ccf9158c8c1b to your computer and use it in GitHub Desktop.
Rename URL "page" in permalinks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Custom pagination_base | |
function url_pagination_base() { | |
global $wp_rewrite; | |
$wp_rewrite->pagination_base = 'pagina'; | |
} | |
add_action( 'init', 'url_pagination_base' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment