forked from billerickson/Core-Functionality
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
39 lines (32 loc) · 1.33 KB
/
plugin.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
31
32
33
34
35
36
37
38
39
<?php
/**
* Plugin Name: Core Functionality
* Plugin URI: https://github.com/billerickson/Core-Functionality
* Description: This contains all your site's core functionality so that it is theme independent.
* Version: 1.1.0
* Author: Jon Brown
* Author URI: http://www.jbrownstudios.com
* Attribution: Many thanks go to Bill Erickson for the original iteration of this core functionliaty plugin
*
* 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.
*
*/
// Plugin Directory
define( 'BE_DIR', dirname( __FILE__ ) );
// Post Types
//include_once( BE_DIR . '/lib/functions/post-types.php' );
// Taxonomies
//include_once( BE_DIR . '/lib/functions/taxonomies.php' );
// Metaboxes
//include_once( BE_DIR . '/lib/functions/metaboxes.php' );
// Shortcodes
//include_once( BE_DIR . '/lib/functions/shortcodes.php' );
// Widgets
//include_once( BE_DIR . '/lib/widgets/widget-social.php' );
// General
include_once( BE_DIR . '/lib/functions/general.php' );