Hide author archive URL of WordPress.
As of April 2026, Hide Author Archive is a WordPress url plugin with 500 active installations and a 5/5 rating from 1 reviews. It has been downloaded 14K+ times in total. Requires WordPress 5.9+ and PHP 7.4+. Available on WordPress.org since 2020. Last updated 1 year ago — may have compatibility concerns. Top alternative: Custom Post Type Permalinks.
This plugin will hide author’s archive.
If your don’t need author parameter, this plugin may enhance your site’s security from bot inspection.
?author=1 redirection to /author/adminauthor=1 or author_name=adminlist_users or edit_others_posts. This capability is filterable.
/**
* Filter capabilities to see author list.
*
* @param string[] $caps List of capabilities.
*/
add_filter( 'hide_author_archive_rest_query_capability', function( $caps ) {
$caps[] = 'read';
return $caps;
} );
Besides that, this plugin tries to remove author information from meta tags and JSON-LD as possible as it can.
Some organization needs to hide author infor…
| WordPress | 5.9+ requiredTested up to 6.7.5 |
| PHP | 7.4+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.