content_url()WP 2.6.0

Retrieves the URL to the content directory.

1 time — 0.000001 sec (speed of light) | 50000 times — 0.10 sec (speed of light) | PHP 7.3.12, WP 5.4
Hooks from the function

Return

String. Content URL link with optional path appended.

Usage

content_url( $path );
$path(string)
Path relative to the content URL.
Default: ''

Examples

0

#1 Demo: get Content URL

echo content_url(); //> http://www.example.com/wp-content

Take in account, that there is no ending closing slash (/).

Set the path:

echo content_url( '/uploads/' ); //> https://example.com/wp-content/uploads/
echo content_url( 'uploads/' );  //> https://example.com/wp-content/uploads/
echo content_url( 'uploads' );   //> https://example.com/wp-content/uploads

Changelog

Since 2.6.0 Introduced.

content_url() code WP 6.4.3

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 );
}