wpseek.com
A WordPress-centric search engine for devs and theme authors



includes_url › WordPress Function

Since2.6.0
Deprecatedn/a
includes_url ( $path = '', $scheme = null )
Parameters: (2)
  • (string) $path Optional. Path relative to the includes URL. Default empty.
    Required: No
    Default: (empty)
  • (string|null) $scheme Optional. Scheme to give the includes URL context. Accepts 'http', 'https', or 'relative'. Default null.
    Required: No
    Default: null
Returns:
  • (string) Includes URL link with optional path appended.
Defined at:
Codex:

Retrieves the URL to the includes directory.



Source

function includes_url( $path = '', $scheme = null ) {
	$url = site_url( '/' . WPINC . '/', $scheme );

	if ( $path && is_string( $path ) ) {
		$url .= ltrim( $path, '/' );
	}

	/**
	 * Filters the URL to the includes directory.
	 *
	 * @since 2.8.0
	 * @since 5.8.0 The `$scheme` parameter was added.
	 *
	 * @param string      $url    The complete URL to the includes directory including scheme and path.
	 * @param string      $path   Path relative to the URL to the wp-includes directory. Blank string
	 *                            if no path is specified.
	 * @param string|null $scheme Scheme to give the includes URL context. Accepts
	 *                            'http', 'https', 'relative', or null. Default null.
	 */
	return apply_filters( 'includes_url', $url, $path, $scheme );
}