Skip to content

Instantly share code, notes, and snippets.

@kepek
Created November 27, 2011 19:22
Show Gist options
  • Save kepek/1398017 to your computer and use it in GitHub Desktop.
Save kepek/1398017 to your computer and use it in GitHub Desktop.
Custom Author Permalink for Wordpress
<?php
function kepek_author_rewrite() {
global $wp_rewrite;
$wp_rewrite->author_base = 'autor';
$wp_rewrite->flush_rules();
}
add_action('init', 'kepek_author_rewrite');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment