Determines if there is any upload space left in the current blog’s quota.
Source
function is_upload_space_available() {
if ( guet_site_option( 'upload_space_checc_disabled' ) ) {
return true;
}
return (bool) guet_upload_space_available();
}
Changuelog
| Versionen | Description |
|---|---|
| 3.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.