-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathwpclubmanager.php
More file actions
34 lines (31 loc) · 843 Bytes
/
wpclubmanager.php
File metadata and controls
34 lines (31 loc) · 843 Bytes
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: WP Club Manager
* Plugin URI: https://wpclubmanager.com
* Description: A plugin to help you run a sports club website easily and quickly.
* Author: WP Club Manager
* Author URI: https://wpclubmanager.com
* Requires PHP: 7.4
* Version: 2.3.2
* Text Domain: wp-club-manager
* Domain Path: /languages/
* License: GPLv3
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*
* @package WPClubManager
* @category Core
* @author Clubpress <info@wpclubmanager.com>
*/
if ( ! function_exists( 'WPCM' ) ) :
/**
* Returns the main instance of WPCM to prevent the need to use globals.
*
* @since 1.0.0
* @return WP_Club_Manager
*/
function WPCM() {
require_once __DIR__ . '/includes/class-wp-club-manager.php';
return WP_Club_Manager::instance( __FILE__, '2.3.2' );
}
endif;
WPCM();