forked from 10up/ElasticPress
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathelasticpress.php
30 lines (27 loc) · 849 Bytes
/
elasticpress.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
27
28
29
30
<?php
/**
* Plugin Name: ElasticPress
* Description: Integrate WordPress search with Elasticsearch
* Version: 1.4
* Author: Aaron Holbrook, Taylor Lovett, Matt Gross, 10up
* Author URI: http://10up.com
* License: GPLv2 or later
*
* This program derives work from Alley Interactive's SearchPress
* and Automattic's VIP search plugin:
*
* Copyright (C) 2012-2013 Automattic
* Copyright (C) 2013 SearchPress
*/
require_once( 'classes/class-ep-config.php' );
require_once( 'classes/class-ep-api.php' );
require_once( 'classes/class-ep-sync-manager.php' );
require_once( 'classes/class-ep-elasticpress.php' );
require_once( 'classes/class-ep-wp-query-integration.php' );
require_once( 'classes/class-ep-wp-date-query.php' );
/**
* WP CLI Commands
*/
if ( defined( 'WP_CLI' ) && WP_CLI ) {
require_once 'bin/wp-cli.php';
}