is_upload_space_available()
Determines if there is any upload space left in the current blog’s quota.
Description Description
Return Return
(bool) True if space is available, false otherwise.
Source Source
File: wp-includes/ms-functions.php
function is_upload_space_available() { if ( get_site_option( 'upload_space_check_disabled' ) ) { return true; } return (bool) get_upload_space_available(); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |