wpdb::hide_errors()
Disables showing of database errors.
Description Description
By default database errors are not shown.
See also See also
Return Return
(bool) Whether showing of errors was active
Source Source
File: wp-includes/wp-db.php
public function hide_errors() {
$show = $this->show_errors;
$this->show_errors = false;
return $show;
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 0.71 | Introduced. |