WP_Filesystem_Base::wp_content_dir() – Returns the path on the remote filesystem of WP_CONTENT_DIR.

You appear to be a bot. Output may be restricted

Description

Returns the path on the remote filesystem of WP_CONTENT_DIR.

Usage

$string = WP_Filesystem_Base::wp_content_dir();

Parameters

Returns

string The location of the remote path.

Source

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

1 to 3 of 3
  public function wp_content_dir() {
    return $this->WP_Filesystem_Base::find_folder( WP_CONTENT_DIR );
  }
 

 View on GitHub View on Trac