-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlsx-business-directory.php
More file actions
35 lines (31 loc) · 959 Bytes
/
lsx-business-directory.php
File metadata and controls
35 lines (31 loc) · 959 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
35
<?php
/*
* Plugin Name: LSX Business Directory
* Plugin URI: https://github.com/lightspeeddevelopment/lsx-business-directory
* Description: LSX Business Directory plugin for business listings.
* Author: LightSpeed
* Version: 1.1.1
* Author URI: https://www.lsdev.biz/
* License: GPL3
* Text Domain: lsx-business-directory
* Domain Path: /languages/
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'LSX_BD_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_BD_CORE', __FILE__ );
define( 'LSX_BD_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_BD_VER', '1.1.1' );
/* ======================= Below is the Plugin Class init ========================= */
require_once LSX_BD_PATH . '/classes/class-core.php';
/**
* Plugin kicks off with this function.
*
* @return void
*/
function lsx_business_directory() {
return \lsx\business_directory\classes\Core::get_instance();
}
lsx_business_directory();