函数原型
multisite_over_quota_message()
函数描述
Displays the out of storage quota message in Multisite.
是否弃用
未弃用
函数参数
无
函数返回值
无
函数位置
File: wp-admin/includes/media.php.
函数源码
function multisite_over_quota_message() {
echo '<p>' . sprintf(
/* translators: %s: Allowed space allocation. */
__( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ),
size_format( get_space_allowed() * MB_IN_BYTES )
) . '</p>';
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.5.0 | Introduced. |

