• I know the plugin only allows for 1 password to be used, is it possible to allow multiple passwords to be used? (comma separated?) . Or at the very least, can you advise on which function to look into so I could branch off & extend to support my need, send back to you for review?

Viewing 1 replies (of 1 total)
  • This is not possible by default.

    If you can code your own functionality there is a password_protected_process_login filter you can use to provide your own password checks:

    function my_password_protected_process_login( $success, $password ) {
       // DO you own checks against $password here and return <code>true</code> to log the user in.
       return $success;
    }
    add_filter( 'password_protected_process_login', 'my_password_protected_process_login', 10, 2 );
Viewing 1 replies (of 1 total)
  • The topic ‘Is it possible to define multiple passwords?’ is closed to new replies.