Created
December 15, 2018 00:05
Revisions
-
greathmaster created this gist
Dec 15, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ /* PMPro Lock Membership Levels-lock existing members. Add this to your customizations plugin and refresh the page. Recommend deleting the code snippet after the operation is complete. */ function bulk_lock_all_members() { global $wpdb; $users = $wpdb->get_results( "SELECT ID FROM $wpdb->users" ); if( $users ) { foreach ( $users as $user ) { update_user_meta( $user->ID, 'pmprolml', 1 ); } } } add_action( "init", "bulk_lock_all_members", 10, 0 );