wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



multisite_over_quota_message › WordPress Function

Od3.5.0
Przestarzałyn/a
multisite_over_quota_message ( Brak parametrów )
Zdefiniowane na:
Codex:

Displays the out of storage quota message in Multisite.



Źródło

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>';
}