• 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.

    1. The support for this plugin is non excitant.
    2. The settings notice doesn’t dismiss properly. I would suggest just removing it all together like I did in the following code.
      <?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');
      }
  • The topic ‘Good but…’ is closed to new replies.