05 Nov 2008

Uninstall Option for WordPress theme

Useful uninstall option “snippet” for your WordPress theme admin option. Basically, this reverts WordPress to the default theme and removes all theme settings / options from the database. Change option your_theme with your own:

global $wpdb;

delete_option('your_theme');
switch_theme('default', 'default');
wp_cache_flush();

wp_redirect('themes.php?activated=true');
exit();