| Current Path : /home/ereika83/www/wp-content/plugins/pay-with-a-like/ |
| Current File : /home/ereika83/www/wp-content/plugins/pay-with-a-like/pwal-uninstall.php |
<?php
/**
* Uninstalls plugin (deletes options and post metas)
*/
function pwal_uninstall() {
delete_option( 'pwal_options' );
delete_option( 'pwal_statistics' );
global $wpdb;
$wpdb->query("DELETE FROM " . $wpdb->postmeta . " WHERE meta_key='pwal_method' OR meta_key='pwal_enable' OR meta_key='pwal_excerpt' " );
}