admin_url WordPress Filter Hook
The admin_url hook is a great way to change the URL of the WordPress admin panel. This can be useful if you want to make it easier for your clients to find the admin panel, or if you want to make it more difficult for hackers to find.
apply_filters( 'admin_url', string $url , string $path , int|null $blog_id , string|null $scheme ) #
Filters the admin area URL.
Parameters
- $url
(string)The complete admin area URL including scheme and path.
- $path
(string)Path relative to the admin area URL. Blank string if no path is specified.
- $blog_id
(int|null)Site ID, or null for the current site.
- $scheme
(string|null)The scheme to use. Accepts 'http', 'https', 'admin', or null. Default 'admin', which obeys force_ssl_admin() and is_ssl().
Source
Changelog
Version | Description |
---|---|
5.8.0 | The $scheme parameter was added. |
2.8.0 | Introduced. |