wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_space_allowed › WordPress Function
Seit
Veraltetn/v
› get_space_allowed ( Keine Parameter )
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
Returns the upload quota for the current blog.
Ähnliche Funktionen: get_space_used, get_site_allowed_themes, rest_send_allow_header, get_upload_space_available, get_user_locale
Quellcode
function get_space_allowed() {
$space_allowed = get_option( 'blog_upload_space' );
if ( ! is_numeric( $space_allowed ) ) {
$space_allowed = get_site_option( 'blog_upload_space' );
}
if ( ! is_numeric( $space_allowed ) ) {
$space_allowed = 100;
}
/**
* Filters the upload quota for the current site.
*
* @since 3.7.0
*
* @param int $space_allowed Upload quota in megabytes for the current blog.
*/
return apply_filters( 'get_space_allowed', $space_allowed );
}