Theme_Installer_Skin::hide_process_failed( WP_Error $wp_error ): bool

In this article

Hides the process_failed error when updating a theme by uploading a zip file.

Parameters

$wp_errorWP_Errorrequired
WP_Error object.

Return

bool True if the error should be hidden, false otherwise.

Source

public function hide_process_failed( $wp_error ) {
	if (
		'upload' === $this->type &&
		'' === $this->overwrite &&
		$wp_error->get_error_code() === 'folder_exists'
	) {
		return true;
	}

	return false;
}

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

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