Home > Software engineering >  How can user account will automatic suspend after specific time in wordpress?
How can user account will automatic suspend after specific time in wordpress?

Time:12-28

In my website i have more than 50 user.

At the time of creating user account, there should be some option like (date in month) that i can select and after completion of month that account will automatically suspend.

Thanks In Advance.

i am expecting that let my problem be solved.

CodePudding user response:

You can do your own code, or use some plugin for that:

Example plugin: https://wordpress.org/plugins/paid-memberships-pro/

Example hooks to use when checking user expiration date (in functions.php of your plugin): https://developer.wordpress.org/reference/hooks/authenticate/ https://developer.wordpress.org/reference/hooks/is_protected_endpoint/ https://developer.wordpress.org/reference/hooks/auth_cookie_bad_session_token/

CodePudding user response:

You can use a membership plugin for this https://wordpress.org/plugins/simple-membership/.

Another option is to develop custom code for the same.

  • Related