bp_core_avatar_upload_path()
Get the absolute upload path for the WP installation.
Description Description
Return Return
(string) Absolute path to WP upload directory.
Source Source
File: bp-core/bp-core-avatars.php
function bp_core_avatar_upload_path() {
/**
* Filters the absolute upload path for the WP installation.
*
* @since 1.2.0
*
* @param string $value Absolute upload path for the WP installation.
*/
return apply_filters( 'bp_core_avatar_upload_path', bp_core_get_upload_dir() );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.2.0 | Introduced. |