WP_Error::get_all_error_data( string|int $code =  ): mixed[]

In this article

Retrieves all error data for an error code in the order in which the data was added.

Parameters

$codestring|intoptional
Error code.

Default:''

Return

mixed[] Array of error data, if it exists.

Source

public function get_all_error_data( $code = '' ) {
	if ( empty( $code ) ) {
		$code = $this->get_error_code();
	}

	$data = array();

	if ( isset( $this->additional_data[ $code ] ) ) {
		$data = $this->additional_data[ $code ];
	}

	if ( isset( $this->error_data[ $code ] ) ) {
		$data[] = $this->error_data[ $code ];
	}

	return $data;
}

Changelog

VersionDescription
5.6.0Introduced.

User Contributed Notes

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