-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathcore-functionality.php
More file actions
28 lines (26 loc) · 1.06 KB
/
core-functionality.php
File metadata and controls
28 lines (26 loc) · 1.06 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
<?php
/**
* Plugin Name: Core Functionality
* Description: This contains all your site's core functionality so that it is theme independent. <strong>It should always be activated</strong>.
* Version: 1.2.1
* Author: Bill Erickson & Jared Atchison
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 2, as published by the
* Free Software Foundation. You may NOT assume that you can use any other
* version of the GPL.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE.
*
* @package CoreFunctionality
* @since 1.0.0
* @copyright Copyright (c) 2014, Bill Erickson & Jared Atchison
* @license GPL-2.0+
*/
// Plugin directory
define( 'EA_DIR' , plugin_dir_path( __FILE__ ) );
require_once( EA_DIR . '/inc/general.php' );
require_once( EA_DIR . '/inc/wordpress-cleanup.php' );
require_once( EA_DIR . '/inc/kill-trackbacks.php' );