llms_update_400_remove_session_options()
Remove session data stored on the options table by removed the WP Session Manager library
Contents
Return Return
(void)
Source Source
File: includes/functions/updates/llms-functions-updates-400.php
function llms_update_400_remove_session_options() { global $wpdb; $wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE '_wp_session_%';" ); // db call ok; no cache ok. }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |