Plugin info

Total downloads: 1,630
Active installs: 50
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 7/25/2022 (1256 days ago)
Added to WordPress: 6/15/2020 (5 years old)
Minimum WordPress version: 4.0.1
Tested up to WordPress version: 6.0.11
Minimum PHP version: 5.6.20

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1256 days ago • 1 reviews

22/100

Is Simply Change Author URL abandoned?

Possibly abandoned (last update 1256 days ago).

Compatibility

Requires WordPress: 4.0.1
Tested up to: 6.0.11
Requires PHP: 5.6.20

Developers

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Edit Author Slug
Rating 4.9/5 (83 reviews)Active installs 100,000
Restrict Usernames Emails Characters
Rating 4.5/5 (25 reviews)Active installs 2,000

Description

The plugin Changes wordpress user slug for security reasons, it prevents access to the usernames of registered users on your site.

By using “Simply Change Author URL” The WordPress default users(authors) Slug and URL addresses will be changed automatically.

By Default Author URL is: example.com/author/[username]/
after install this plugin URLs will be changed to: example.com/user/[user_id]/

This will protects the usernames from being easily accessible by cyber attackers.

This plugin also:
1. Removes wordpress api user endpoints. (they contain information about users)
1. Changes canonical links generated by yoast.

Installation

INSTALL Simply Change Author URL FROM WITHIN WORDPRESS

  1. Visit the plugins page within your dashboard and select Add New;
  2. Search for 'Simply Change Author URL';
  3. Activate 'Simply Change Author URL' from your Plugins page;

INSTALL Simply Change Author URL MANUALLY

  1. Upload the 'simply-change-author-url' folder to the /wp-content/plugins/ directory;
  2. Activate the 'Simply Change Author URL' plugin through the 'Plugins' menu in WordPress;

Frequently Asked Questions

How to change “author_base” From “user” to something else

You can do this using a hook named 'simply_change_author_url_author_base' just return your desired Slug.
Remember to call <?php flush_rewrite_rules(); ?>, or manually flush rewrite rules by going to 'Setting' => 'Permalinks' and 'save' the settings.

Example Code:

add_filter('simply_change_author_url_author_base', 'changeAuthorSlug');

function changeAuthorSlug(){
    return 'example_slug';
}

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.1.2

  • simply_change_author_url_author_base filter works fine now.
  • username no longer prints in body classes.

1.1.1

  • fixed a bug where some canonical urls might not get replaced.

1.1.0

  • compatibility with yoast seo.
  • remove wordpress json api user endpoints.

1.0.0

  • Initial plugin release.