forked from stuttter/wp-user-groups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-user-groups.php
60 lines (52 loc) · 1.39 KB
/
wp-user-groups.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* Plugin Name: WP User Groups
* Plugin URI: https://wordpress.org/plugins/wp-user-groups/
* Author: John James Jacoby
* Author URI: https://profiles.wordpress.org/johnjamesjacoby/
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Description: Group users together with taxonomies & terms.
* Version: 2.2.0
* Text Domain: wp-user-groups
* Domain Path: /wp-user-groups/assets/languages/
*/
// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
/**
* Include the User Groups files
*
* @since 0.1.0
*/
function _wp_user_groups() {
// Get the plugin path
$plugin_path = plugin_dir_path( __FILE__ ) . 'wp-user-groups/';
// Classes
require_once $plugin_path . 'includes/classes/class-user-taxonomy.php';
// Functions
require_once $plugin_path . 'includes/functions/admin.php';
require_once $plugin_path . 'includes/functions/common.php';
require_once $plugin_path . 'includes/functions/taxonomies.php';
require_once $plugin_path . 'includes/functions/hooks.php';
}
add_action( 'plugins_loaded', '_wp_user_groups' );
/**
* Return the plugin URL
*
* @since 0.1.4
*
* @return string
*/
function wp_user_groups_get_plugin_url() {
return plugin_dir_url( __FILE__ ) . 'wp-user-groups/';
}
/**
* Return the asset version
*
* @since 0.1.4
*
* @return int
*/
function wp_user_groups_get_asset_version() {
return 201806050001;
}