Initializes the error.
If $code is empty, the other parameters will be ignored.
When $code is not empty, $message will be used even if it is empty. The $data parameter will be used only if it is not empty.
Though the class is constructed with a single error code and message, multiple codes can be added using the add() method.
$codestring|intoptional
Default:''
$messagestringoptional
Default:''
$datamixedoptional
Default:''
public function __construct( $code = '', $message = '', $data = '' ) {
if ( empty( $code ) ) {
return;
}
$this->add( $code, $message, $data );
}
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_error/__construct