is_upload_space_available()
Determines if there is any upload space left in the current blog's quota.
Хуков нет.
Возвращает
true|false. True if space is available, false otherwise.
Использование
is_upload_space_available();
Список изменений
| С версии 3.0.0 | Введена. |
Код is_upload_space_available() is upload space available WP 7.0
function is_upload_space_available() {
if ( get_site_option( 'upload_space_check_disabled' ) ) {
return true;
}
return (bool) get_upload_space_available();
}