wpseek.com
A WordPress-centric search engine for devs and theme authors
user_admin_url › WordPress Function
Since3.0.0
Deprecatedn/a
› user_admin_url ( $path = '', $scheme = 'admin' )
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: |
Retrieves the URL to the admin area for the current user.
Source
function user_admin_url( $path = '', $scheme = 'admin' ) { $url = network_site_url( 'wp-admin/user/', $scheme ); if ( $path && is_string( $path ) ) { $url .= ltrim( $path, '/' ); } /** * Filters the user admin URL for the current user. * * @since 3.1.0 * * @param string $url The complete URL including scheme and path. * @param string $path Path relative to the URL. Blank string if * no path is specified. */ return apply_filters( 'user_admin_url', $url, $path ); }