WP_Error::get_error_data( string|int $code = '' ): mixed

Retrieves the most recently added error data for an error code.


Parameters

$code string|int Optional
Error code.

Default: ''


Top ↑

Return

mixed Error data, if it exists.


Top ↑

Source

File: wp-includes/class-wp-error.php. View all references

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

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


Top ↑

Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes

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