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



content_url › WordPress Function

Since2.6.0
Deprecatedn/a
content_url ( $path = '' )
Parameters:
  • (string) $path Optional. Path relative to the content URL. Default empty.
    Required: No
    Default: (empty)
Returns:
  • (string) Content URL link with optional path appended.
Defined at:
Codex:

Retrieves the URL to the content directory.



Source

function content_url( $path = '' ) {
	$url = set_url_scheme( WP_CONTENT_URL );

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

	/**
	 * Filters the URL to the content directory.
	 *
	 * @since 2.8.0
	 *
	 * @param string $url  The complete URL to the content directory including scheme and path.
	 * @param string $path Path relative to the URL to the content directory. Blank string
	 *                     if no path is specified.
	 */
	return apply_filters( 'content_url', $url, $path );
}