WP_Importer::is_user_over_quota(): bool

In this article

Checks if user has exceeded disk quota.

Return

bool

Source


/**
 * Checks if user has exceeded disk quota.
 *
 * @return bool
 */
public function is_user_over_quota() {
	if ( function_exists( 'upload_is_user_over_quota' ) ) {
		if ( upload_is_user_over_quota() ) {

User Contributed Notes

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