mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://wordpress.stackexchange.com/questions/236514/uninstalling-a-plugin-delete-all-options-with-specific-prefix
7 lines
218 B
Text
7 lines
218 B
Text
global $wpdb;
|
|
|
|
$plugin_options = $wpdb->get_results( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE 'jetpack_%'" );
|
|
|
|
foreach( $plugin_options as $option ) {
|
|
delete_option( $option->option_name );
|
|
}
|