1 | <?php |
||
2 | /* |
||
3 | * Plugin Name: LSX Search |
||
4 | * Plugin URI: https://github.com/lightspeeddevelopment/lsx-search |
||
5 | * Description: The LSX Search extension improves the search result pages for LSX Theme. |
||
6 | * Author: LightSpeed |
||
7 | * Version: 1.5.4 |
||
8 | * Author URI: https://www.lsdev.biz/ |
||
9 | * License: GPL3 |
||
10 | * Text Domain: lsx-search |
||
11 | * Domain Path: /languages/ |
||
12 | */ |
||
13 | |||
14 | // If this file is called directly, abort. |
||
15 | if ( ! defined( 'WPINC' ) ) { |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
16 | die; |
||
17 | } |
||
18 | |||
19 | define( 'LSX_SEARCH_PATH', plugin_dir_path( __FILE__ ) ); |
||
20 | define( 'LSX_SEARCH_CORE', __FILE__ ); |
||
21 | define( 'LSX_SEARCH_URL', plugin_dir_url( __FILE__ ) ); |
||
22 | define( 'LSX_SEARCH_VER', '1.5.2' ); |
||
23 | |||
24 | /* ======================= Below is the Plugin Class init ========================= */ |
||
25 | |||
26 | require_once LSX_SEARCH_PATH . '/includes/template-tags.php'; |
||
27 | require_once LSX_SEARCH_PATH . '/includes/functions.php'; |
||
28 | require_once LSX_SEARCH_PATH . '/classes/class-lsx-search.php'; |
||
29 |