wp_redirect_admin_locations
Redirects a variety of shorthand URLs to the admin.
Description
wp_redirect_admin_locations();
If a user visits example.com/admin, they'll be redirected to /wp-admin. Visiting /login redirects to /wp-login.php, and so on.
Usage
if ( !function_exists( 'wp_redirect_admin_locations' ) ) { require_once ABSPATH . WPINC . '/canonical.php'; } // NOTICE! Understand what this does before running. $result = wp_redirect_admin_locations();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/canonical.php
- function wp_redirect_admin_locations() {
- global $wp_rewrite;
- if ( ! ( is_404() && $wp_rewrite->using_permalinks() ) )
- return;
- $admins = array(
- home_url( 'wp-admin', 'relative' ),
- home_url( 'dashboard', 'relative' ),
- home_url( 'admin', 'relative' ),
- site_url( 'dashboard', 'relative' ),
- site_url( 'admin', 'relative' ),
- );
- if ( in_array( untrailingslashit( $_SERVER['REQUEST_URI'] ), $admins ) ) {
- wp_redirect( admin_url() );
- exit;
- }
- $logins = array(
- home_url( 'wp-login.php', 'relative' ),
- home_url( 'login', 'relative' ),
- site_url( 'login', 'relative' ),
- );
- if ( in_array( untrailingslashit( $_SERVER['REQUEST_URI'] ), $logins ) ) {
- wp_redirect( wp_login_url() );
- exit;
- }
- }