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 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();

Comments RSS feed

Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>