Astra_Docs_Loader::get_local_docs_json_url()
Get the local stylesheet URL.
Description
Return
(string)
Source
File: inc/lib/docs/class-astra-docs-loader.php
public function get_local_docs_json_url() {
if ( ! $this->local_docs_json_url ) {
$this->local_docs_json_url = str_replace(
$this->get_base_path(),
$this->get_base_url(),
$this->get_local_docs_file_path()
);
}
return $this->local_docs_json_url;
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 4.6.0 | Introduced. |