-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathto-team.php
More file actions
31 lines (26 loc) · 1.07 KB
/
to-team.php
File metadata and controls
31 lines (26 loc) · 1.07 KB
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
<?php
/*
* Plugin Name: Tour Operator Team
* Plugin URI: https://touroperator.solutions/plugins/team/
* Description: Real peoples' faces go a long way to building trust with your clients. The Team Extension allows your business's staff to be added as Team Members with their own profile which can be associated with specific destinations and tours.
* Version: 2.1
* Author: LightSpeed
* Author URI: https://lightspeedwp.agency/
* License: GPL3+
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: to-team
* Domain Path: /languages/
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'LSX_TO_TEAM_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_TO_TEAM_CORE', __FILE__ );
define( 'LSX_TO_TEAM_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_TO_TEAM_VER', '2.1.0' );
if ( ! defined( 'TEAM_ARCHIVE_URL' ) ) {
define( 'TEAM_ARCHIVE_URL', 'team-members' );
}
/* ======================= Below is the Plugin Class init ========================= */
require_once LSX_TO_TEAM_PATH . '/classes/class-to-team.php';