WP_Customize_Manager::get_preview_url(): string

In this article

Gets the initial URL to be previewed.

Return

string URL being previewed.

Source

public function get_preview_url() {
	if ( empty( $this->preview_url ) ) {
		$preview_url = home_url( '/' );
	} else {
		$preview_url = $this->preview_url;
	}
	return $preview_url;
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.