W3cubDocs

/WordPress

WP_Filesystem_Base::get_base_dir( string $base = ‘.’, bool $verbose = false ): string

Locates a folder on the remote filesystem.

Description

See also

Parameters

$basestringoptional
The folder to start searching from. Default '.'.

Default:'.'

$verbosebooloptional
True to display debug information.

Default:false

Return

string The location of the remote path.

Source

public function get_base_dir( $base = '.', $verbose = false ) {
	_deprecated_function( __FUNCTION__, '2.7.0', 'WP_Filesystem_Base::abspath() or WP_Filesystem_Base::wp_*_dir()' );
	$this->verbose = $verbose;
	return $this->abspath();
}

Changelog

Version Description
2.7.0 use WP_Filesystem_Base::abspath() or WP_Filesystem*Base::wp**_dir() methods instead.
2.5.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_filesystem_base/get_base_dir