Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: site_url

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1931      else
1932           $url = get_blog_option( $blog_id, 'siteurl' );
1933
1934      if ( 'http' != $scheme )
1935           $url = str_replace( 'http://', "{$scheme}://", $url );
1936
1937      if ( !empty( $path ) && is_string( $path ) && strpos( $path, '..' ) === false )
1938           $url .= '/' . ltrim( $path, '/' );
1939
1940      return apply_filters( 'site_url', $url, $path, $orig_scheme, $blog_id );
1941 }
1942
1943 /**
1944  * Retrieve the url to the admin area for the current site.
1945  *
1946  * @package WordPress
1947  * @since 2.6.0
1948  *
1949  * @param string $path Optional path relative to the admin url.