WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
2078 | * @param string $scheme Optional. Scheme to give the includes url context. |
2079 | * @return string Includes url link with optional path appended. |
2080 | */ |
2081 | function includes_url( $path = '', $scheme = null ) { |
2082 | $url = site_url( '/' . WPINC . '/', $scheme ); |
2083 |
|
2084 | if ( $path && is_string( $path ) ) |
2085 | $url .= ltrim($path, '/'); |
2086 |
|
2087 | return apply_filters('includes_url', $url, $path); |
2088 | } |
2089 |
|
2090 | /** |
2091 | * Retrieve the url to the content directory. |
2092 | * |
2093 | * @package WordPress |
2094 | * @since 2.6.0 |
2095 | * |
2096 | * @param string $path Optional. Path relative to the content url. |