wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
display_space_usage › WordPress Function
Seit
Veraltetn/v
› display_space_usage ( Keine Parameter )
Definiert in: |
|
Codex: | |
Changelog: |
|
Displays the amount of disk space used by the current site. Not used in core.
Ähnliche Funktionen: display_header, is_upload_space_available, display_theme, upload_space_setting, display_themes
Quellcode
function display_space_usage() {
$space_allowed = get_space_allowed();
$space_used = get_space_used();
$percent_used = ( $space_used / $space_allowed ) * 100;
$space = size_format( $space_allowed * MB_IN_BYTES );
?>
<strong>
<?php
/* translators: Storage space that's been used. 1: Percentage of used space, 2: Total space allowed in megabytes or gigabytes. */
printf( __( 'Used: %1$s%% of %2$s' ), number_format( $percent_used ), $space );
?>
</strong>
<?php
}