PluginProbe
Easy Basic Authentication – Add basic auth to site or admin area / trunk
Easy Basic Authentication – Add basic auth to site or admin area vtrunk
trunk 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4 1.4.1 1.5 1.5.1 1.5.2 1.5.3 1.6 1.6.1 1.6.2 1.6.3 1.6.4 1.7 1.7.1 1.8 1.8.1 1.9 All 50 releases
easy-basic-authentication / easy-basic-authentication.php

easy-basic-authentication.php in Easy Basic Authentication – Add basic auth to site or admin area trunk, at easy-basic-authentication.php

21 lines 547 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: Easy Basic Authentication
4 description: Enhance WordPress security with Easy Basic Authentication plugin.
5 Version: 4.0.0
6 Author: Matteo Enna
7 Author URI: https://matteoenna.it/it/wordpress-work/
8 Text Domain: easy-basic-authentication
9 License: GPL2
10 */
11
12 if ( ! defined( 'ABSPATH' ) ) {
13 exit;
14 }
15
16 require_once (dirname(__FILE__).'/class/easy-basic-authentication-class.php');
17
18 add_action('plugins_loaded', function () {
19 new easy_basic_authentication_class();
20 });
21