WP_Importer::is_user_over_quota()

Check if user has exceeded disk quota


Description Description


Return Return

(bool)


Top ↑

Source Source

File: wp-admin/includes/class-wp-importer.php

	public function is_user_over_quota() {
		if ( function_exists( 'upload_is_user_over_quota' ) ) {
			if ( upload_is_user_over_quota() ) {
				return true;
			}
		}

		return false;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.