WordPress函数文档fix_import_form_size()
获取博客剩余可上传的空间大小 描述 Get the remaining upload space for th…
获取博客剩余可上传的空间大小
描述
Get the remaining upload space for this blog.
用法
<?php fix_import_form_size( $size ) ?>
参数
$size
(integer) (必填) Current max size in bytes
默认值: None
示例
1
2
3
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
|
历史
添加于 版本: MU
源文件
fix_import_form_size() 函数的代码位于 wp-admin/includes/ms.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Get the remaining upload space for this blog.
*
* @since MU
*
* @param int $size Current max size in bytes
* @return int Max size in bytes
*/
function fix_import_form_size( $size ) {
if ( upload_is_user_over_quota( false ) ) {
return 0;
}
$available = get_upload_space_available();
return min( $size, $available );
}
|
相关
- 原文:http://codex.wordpress.org/Function_Reference/fix_import_form_size
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!