-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtalash.php
26 lines (21 loc) · 962 Bytes
/
talash.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
<?php
/**
* Plugin Name: Talash - Advanced Search Plugin
* Plugin URI: https://wordpress.org/plugins/talash
* Description: Advanced Search plugin for WordPress. Next Level of WordPress search experience. <code>[talash-search]</code> use this shorCode to show the <strong>Talash Search Bar</strong>. You can customize the UI from customizer.
* Version: 1.1.8
* Author: Keramot UL Islam
* Author URI: https://abmsourav.com/
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: talash
* Domain Path: /languages
*/
use Talash\Talash_Core;
if ( ! defined( 'ABSPATH' ) ) die;
define( 'TALASH_VERSION', '1.1.8' );
define( 'TALASH_URL', plugins_url( '/', __FILE__ ) );
define( 'TALASH_DIR_PATH', plugin_dir_path( __FILE__ ) );
define( 'TALASH_ENV_DEV', false );
require TALASH_DIR_PATH . '/inc/Talash.php';
Talash_Core::spread_happiness();