-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoderdojo-groups.php
More file actions
28 lines (22 loc) · 716 Bytes
/
coderdojo-groups.php
File metadata and controls
28 lines (22 loc) · 716 Bytes
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: Coderdojo Groups
Plugin URI: http://URI_Of_Page_Describing_Plugin_and_Updates
Description: A brief description of the Plugin.
Version: 1.0
Author: anthonynolan
Author URI: http://URI_Of_The_Plugin_Author
License: A "Slug" license name e.g. GPL2
*/
// Exit if accessed directly.
if (! defined('ABSPATH')) {
exit;
}
/** Custom Post Types */
require_once dirname(__FILE__) . '/includes/custom-post-types.php';
/** Custom Menu Pages */
require_once dirname(__FILE__) . '/includes/custom-menu-pages.php';
/** Custom Meta Boxes */
require_once dirname(__FILE__) . '/includes/custom-meta-boxes.php';
/** Custom Shortcodes */
require_once dirname(__FILE__) . '/includes/custom-shortcodes.php';