10+
April 30, 2014
March 4, 2013
Adds a checkbox to author profiles to redirect. Useful for sites that have occasional authors or user accounts not intended for display.
This section describes how to install the plugin and get it working.
extra-authors-redirect to the /wp-content/plugins/ directory.No. this only affects people going to the /author/ template page on a site, and only affects those that have been marked to redirect.
Yes. There is a filter to change the default behavior. In your functions file, include the following:
function new_auth_url($location) {
$location = 'http://google.com';
return $location;
}
add_filter( 'extra_author_redirect_url', 'new_auth_url' );