home_url

Advertisement

Summery Summery

Retrieves the URL for the current site where the front end is accessible.

Syntax Syntax

home_url( string $path = '', string|null $scheme = null )

Description Description

Returns the ‘home’ option with the appropriate protocol. The protocol will be ‘https’ if is_ssl() evaluates to true; otherwise, it will be the same as the ‘home’ option. If $scheme is ‘http’ or ‘https’, is_ssl() is overridden.

Parameters Parameters

$path

(Optional) Path relative to the home URL.

Default value: ''

$scheme

(Optional) Scheme to give the home URL context. Accepts 'http', 'https', 'relative', 'rest', or null.

Default value: null

Return Return

(string) Home URL link with optional path appended.

Source Source

File: wp-includes/link-template.php

 */
function the_comments_pagination( $args = array() ) {
	echo get_the_comments_pagination( $args );

Advertisement

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Advertisement

Leave a Reply