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;
	}

Changelog

Changelog
Version Description
4.6.0 Introduced.


User Contributed Notes

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