-
Notifications
You must be signed in to change notification settings - Fork 0
/
better-wp-security.php
34 lines (26 loc) · 1.05 KB
/
better-wp-security.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/*
* Plugin Name: iThemes Security
* Plugin URI: https://ithemes.com/security
* Description: Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.
* Author: iThemes
* Author URI: https://ithemes.com
* Version: 5.6.2
* Text Domain: better-wp-security
* Network: True
* License: GPLv2
*/
$locale = apply_filters( 'plugin_locale', get_locale(), 'better-wp-security' );
load_textdomain( 'better-wp-security', WP_LANG_DIR . "/plugins/better-wp-security/better-wp-security-$locale.mo" );
load_plugin_textdomain( 'better-wp-security' );
if ( isset( $itsec_dir ) || class_exists( 'ITSEC_Core' ) ) {
include( dirname( __FILE__ ) . '/core/show-multiple-version-notice.php' );
return;
}
$itsec_dir = dirname( __FILE__ );
if ( is_admin() ) {
require( "$itsec_dir/lib/icon-fonts/load.php" );
}
require( "$itsec_dir/core/class-itsec-core.php" );
$itsec_core = ITSEC_Core::get_instance();
$itsec_core->init( __FILE__, __( 'iThemes Security', 'better-wp-security' ) );