llms_update_400_remove_session_options()

Remove session data stored on the options table by removed the WP Session Manager library


Return Return

(void)


Top ↑

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.
}

Top ↑

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.