Hide Backend – Different URL for subscribers?
-
We have a case where we want admin users to be able to log in to the admin interface, but keep subscribers from finding out about the URL of the admin interface.
Hiding the admin interface URL works well in the sense that, in order to get to the admin interface itself, you have to know the new slug, e.g.
https://example.com/new-wp-admin-slug/
However, we also have sign-in/registration for subscribers, handled via a custom, visitor-facing front-end form.
The issue here is that the sign-in form’s “action” naturally also gives away the admin URL, as in
<form action="/new-wp-admin-slug/">
. What is the best way to make sure this does not happen, and/or is there a way to use a different slug for front-end facing users (subscribers in our case), to make sure they cannot use the URL to get to the WP-default log-in page?
- The topic ‘Hide Backend – Different URL for subscribers?’ is closed to new replies.