kriskhoury
11/20/2019 - 4:48 PM

WP Change Author Permalink

add_action( 'init', '_change_author_permalinks' );
function _change_author_permalinks() {
  global $wp_rewrite;
  $wp_rewrite->author_base = 'patron';
  $wp_rewrite->flush_rules();
}