WP_Customize_Manager::get_preview_url(): string

Gets the initial URL to be previewed.


Return

string URL being previewed.


Top ↑

Source

File: wp-includes/class-wp-customize-manager.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes

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