Rating: 5 stars
Good plugin!
]]>Rating: 4 stars
This plugin is a great plugin for people who have local hosted websites. It saves a lot of time not having to typing in your password.
There are two things that I don’t like about this plugin.
<?php
/*
Plugin Name: .No Login !!
Plugin URI: https://planetozh.com/blog/my-projects/wordpress-plugin-no-login/
Description: Never authenticate, you're always the admin. Obviously for test sites!
Author: Ozh
Version: 1.0.2
Author URI: https://planetozh.com/
*/
/**/
if (!function_exists('wp_validate_auth_cookie')) {
function wp_validate_auth_cookie() {
return 1;
}
add_action( 'admin_enqueue_scripts', 'ozh_nologin_enqueue' );
}
function ozh_nologin_enqueue() {
wp_enqueue_script('jquery');
}
Rating: 5 stars
I use it for my local, development site
]]>