Astra_WebFont_Loader::get_local_stylesheet_url()

Get the local stylesheet URL.


Description


Return

(string)


Source

File: inc/lib/webfont/class-astra-webfont-loader.php

	public function get_local_stylesheet_url() {
		if ( ! $this->local_stylesheet_url ) {
			$this->local_stylesheet_url = str_replace(
				$this->get_base_path(),
				$this->get_base_url(),
				$this->get_local_stylesheet_path()
			);
		}
		return $this->local_stylesheet_url;
	}

Changelog

Changelog
Version Description
3.6.0 Introduced.


User Contributed Notes

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