bp_get_requested_url()
Return the URL as requested on the current page load by the user agent.
Description Description
Return Return
(string) Requested URL string.
Source Source
File: bp-core/bp-core-catchuri.php
function bp_get_requested_url() {
$bp = buddypress();
if ( empty( $bp->canonical_stack['requested_url'] ) ) {
$bp->canonical_stack['requested_url'] = is_ssl() ? 'https://' : 'http://';
$bp->canonical_stack['requested_url'] .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
/**
* Filters the URL as requested on the current page load by the user agent.
*
* @since 1.7.0
*
* @param string $value Requested URL string.
*/
return apply_filters( 'bp_get_requested_url', $bp->canonical_stack['requested_url'] );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.6.0 | Introduced. |