multisite_over_quota_message() WP 3.5.0
Displays the out of storage quota message in Multisite.
Хуков нет.
Возвращает
Null. Ничего.
Использование
multisite_over_quota_message();
Список изменений
С версии 3.5.0 | Введена. |
Код multisite_over_quota_message() multisite over quota message WP 5.6.2
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>';
}