wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



is_upload_space_available › WordPress Function

Seit3.0.0
Veraltetn/v
is_upload_space_available ( Keine Parameter )
Gibt zurück:
  • (bool) True if space is available, false otherwise.
Definiert in:
Codex:

Determines if there is any upload space left in the current blog's quota.



Quellcode

function is_upload_space_available() {
	if ( get_site_option( 'upload_space_check_disabled' ) ) {
		return true;
	}

	return (bool) get_upload_space_available();
}