bp_core_get_site_path()

Get the path of the current site.

Description

Return

(string) URL to the current site.

Source

File: bp-core/bp-core-functions.php

1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
function bp_core_get_site_path() {
    global $current_site;
 
    if ( is_multisite() ) {
        $site_path = $current_site->path;
    } else {
        $site_path = (array) explode( '/', home_url() );
 
        if ( count( $site_path ) < 2 ) {
            $site_path = '/';
        } else {
            // Unset the first three segments (http(s)://example.com part).
            unset( $site_path[0] );
            unset( $site_path[1] );
            unset( $site_path[2] );
 
            if ( !count( $site_path ) ) {
                $site_path = '/';
            } else {
                $site_path = '/' . implode( '/', $site_path ) . '/';
            }
        }
    }
 
    /**
     * Filters the path of the current site.
     *
     * @since BuddyPress 1.2.0
     *
     * @param string $site_path URL to the current site.
     */
    return apply_filters( 'bp_core_get_site_path', $site_path );
}

Changelog

Changelog
Version Description
BuddyPress 1.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.