WP_Paused_Extensions_Storage::delete_all() WordPress Method
The WP_Paused_Extensions_Storage::delete_all() method is used to delete all paused extensions from the WordPress database. This is useful for when you want to clean up your database and remove anypaused extensions that are no longer needed.
WP_Paused_Extensions_Storage::delete_all() #
Remove all paused extensions.
Return
(bool)
Source
File: wp-includes/class-wp-paused-extensions-storage.php
public function delete_all() { if ( ! $this->is_api_loaded() ) { return false; } $option_name = $this->get_option_name(); if ( ! $option_name ) { return false; } $paused_extensions = (array) get_option( $option_name, array() ); unset( $paused_extensions[ $this->type ] ); if ( ! $paused_extensions ) { return delete_option( $option_name ); } return update_option( $option_name, $paused_extensions ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |