llms_expire_membership_schedule()

Schedule expired membership cron


Return Return

(void)


Top ↑

Source Source

File: includes/functions/llms-functions-deprecated.php

function llms_expire_membership_schedule() {
	if ( ! wp_next_scheduled( 'llms_check_for_expired_memberships' ) ) {
		  wp_schedule_event( time(), 'daily', 'llms_check_for_expired_memberships' );
	}
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.