Skip to content

Instantly share code, notes, and snippets.

View theRealRizeo's full-sized avatar
💭
Getting work done

Paul Kevin theRealRizeo

💭
Getting work done
View GitHub Profile
@theRealRizeo
theRealRizeo / delete-expired-members-and-users.php
Last active September 14, 2017 06:29
Cron to delete expired members and users
<?php
/**
* Membership 2 plugin script to run in the background to delete expired members
*
*/
if ( ! wp_next_scheduled( 'my_membership_delete_expired_members' ) ) {
wp_schedule_event( time(), 'daily', 'my_membership_delete_expired_members' );
}