Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: includes_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
2023  * @param string $scheme Optional. Scheme to give the includes url context.
2024  * @return string Includes url link with optional path appended.
2025 */
2026 function includes_url( $path = '', $scheme = null ) {
2027      $url = site_url( '/' . WPINC . '/', $scheme );
2028
2029      if ( $path && is_string( $path ) )
2030           $url .= ltrim($path, '/');
2031
2032      return apply_filters('includes_url', $url, $path);
2033 }
2034
2035 /**
2036  * Retrieve the url to the content directory.
2037  *
2038  * @package WordPress
2039  * @since 2.6.0
2040  *
2041  * @param string $path Optional. Path relative to the content url.