WP_Recovery_Mode::store_error() WordPress Method
The WP_Recovery_Mode::store_error() method is used to store an error in the WordPress database. This is useful for debugging purposes, as it allows you to see what errors have occurred in your WordPress installation.
WP_Recovery_Mode::store_error( array $error ) #
Stores the given error so that the extension causing it is paused.
Parameters
- $error
(array)(Required)Error details from
error_get_last()
.
Return
(bool) True if the error was stored successfully, false otherwise.
Source
File: wp-includes/class-wp-recovery-mode.php
protected function store_error( $error ) { $extension = $this->get_extension_for_error( $error ); if ( ! $extension ) { return false; } switch ( $extension['type'] ) { case 'plugin': return wp_paused_plugins()->set( $extension['slug'], $error ); case 'theme': return wp_paused_themes()->set( $extension['slug'], $error ); default: return false; } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |