Astra_Docs_Loader::get_docs_folder()

Get the folder for docs.


Description


Return

(string)


Source

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

	public function get_docs_folder() {
		if ( ! $this->docs_folder ) {
			$this->docs_folder = $this->get_base_path();
			$this->docs_folder .= '/' . $this->subfolder_name;
		}

		return $this->docs_folder;
	}


User Contributed Notes

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