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;
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 3.6.0 | Introduced. |