Summery Summery
Retrieve first error code available.
Syntax Syntax
Return Return
(string|int) Empty string, if no error codes.
Source Source
File: wp-includes/class-wp-error.php
public function get_error_code() {
$codes = $this->get_error_codes();
if ( empty( $codes ) ) {
return '';
}
return $codes[0];
}
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |