Skip to content

Instantly share code, notes, and snippets.

@johanguse
Last active January 6, 2022 12:51
Show Gist options
  • Save johanguse/ad5687bd1f1fce83d7e31fe91f89900f to your computer and use it in GitHub Desktop.
Save johanguse/ad5687bd1f1fce83d7e31fe91f89900f to your computer and use it in GitHub Desktop.
Translate pagination base slug url on WordPress
//https://wordpress.stackexchange.com/questions/57070/change-the-page-slug-in-pagination
function re_rewrite_rules() {
global $wp_rewrite;
$wp_rewrite->author_base = 'autor';
$wp_rewrite->search_base = 'buscar';
$wp_rewrite->comments_base = 'comentarios';
$wp_rewrite->pagination_base = 'pagina';
$wp_rewrite->flush_rules();
}
add_action('init', 're_rewrite_rules');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment