wp_get_upload_dir()
Retrieves uploads directory information.
Description Description
Same as wp_upload_dir() but "light weight" as it doesn’t attempt to create the uploads directory. Intended for use in themes, when only ‘basedir’ and ‘baseurl’ are needed, generally in all cases when not uploading files.
See also See also
Return Return
(array) See wp_upload_dir() for description.
Source Source
File: wp-includes/functions.php
function wp_get_upload_dir() { return wp_upload_dir( null, false ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.5.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Sample result of the function
If it is called in
index.php
: