forked from ChaseWiseman/age-verify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
age-verify.php
executable file
·45 lines (38 loc) · 1.01 KB
/
age-verify.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
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* The main plugin file.
*
* This file loads the main plugin class and gets things running.
*
* @since 0.2.6
*
* @package Age_Verify
*/
/**
* Plugin Name: Age Verify
* Description: A simple way to ask visitors for their age before viewing your site.
* Author: Chase Wiseman
* Author URI: http://chasewiseman.com
* Version: 0.2.8
* Text Domain: age_verify
* Domain Path: /languages/
*/
// Don't allow this file to be accessed directly.
if ( ! defined( 'WPINC' ) ) {
die();
}
/**
* The main class definition.
*/
require( plugin_dir_path( __FILE__ ) . 'includes/class-age-verify.php' );
// Get the plugin running.
add_action( 'plugins_loaded', array( 'Age_Verify', 'get_instance' ) );
// Check that the admin is loaded.
if ( is_admin() ) {
/**
* The admin class definition.
*/
require( plugin_dir_path( __FILE__ ) . 'includes/admin/class-age-verify-admin.php' );
// Get the plugin's admin running.
add_action( 'plugins_loaded', array( 'Age_Verify_Admin', 'get_instance' ) );
}