WP_Filesystem_Base::connect() WordPress Method

The WP_Filesystem_Base::connect() method is used to connect to a filesystem. It is typically used to connect to the local filesystem, but can also be used to connect to a remote filesystem.

WP_Filesystem_Base::connect() #

Connects filesystem.


Return

(bool) True on success, false on failure (always true for WP_Filesystem_Direct).


Top ↑

Source

File: wp-admin/includes/class-wp-filesystem-base.php

	public function connect() {
		return true;
	}

Top ↑

Changelog

Changelog
VersionDescription
2.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.