Disable Admin CP authentication (or auto login)
Here is example code that will log everyone in as ‘autologinuser’. The ‘autologinuser’ needs to be created and given a role prior to using this code. function my_autologin() { if (!is_user_logged_in()) { $uid = ‘autologinuser’; $user = get_userdatabylogin( $uid ); wp_set_auth_cookie($user->ID); wp_set_current_user($user->ID); do_action(‘wp_login’, $user_login); // optional } } add_action(‘init’,’my_autologin’);