WP_Filesystem_Base::wp_lang_dir()publicWP 3.2.0

Returns the path on the remote filesystem of WP_LANG_DIR.

Method of the class: WP_Filesystem_Base{}

No Hooks.

Return

String. The location of the remote path.

Usage

$WP_Filesystem_Base = new WP_Filesystem_Base();
$WP_Filesystem_Base->wp_lang_dir();

Changelog

Since 3.2.0 Introduced.

WP_Filesystem_Base::wp_lang_dir() code WP 6.4.3

public function wp_lang_dir() {
	return $this->find_folder( WP_LANG_DIR );
}