-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.php
35 lines (30 loc) · 935 Bytes
/
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
<?php
/**
* Plugin Name: Address Book
* Plugin URI: https://github.com/jazzsequence/Address-Book
* Description: A WordPress plugin for storing and maintaining addresses.
* Author: Chris Reynolds
* Author URI: https://chrisreynolds.io
* License: GPLv3
* Version: 0.3.3
*
* @package AddressBook
*/
namespace AddressBook;
/**
* Move everything into an init function.
*/
function init() {
// Load extended cpts if it hasn't been loaded yet.
if ( ! function_exists( 'register_extended_post_type' ) ) {
require_once __DIR__ . '/vendor/johnbillion/extended-cpts/extended-cpts.php';
}
require_once __DIR__ . '/vendor/cmb2/cmb2/init.php';
require_once __DIR__ . '/inc/namespace.php';
require_once __DIR__ . '/inc/cpt/namespace.php';
require_once __DIR__ . '/inc/cpt/cmb.php';
require_once __DIR__ . '/inc/admin/namespace.php';
add_action( 'plugins_loaded', __NAMESPACE__ . '\\bootstrap' );
}
// Kick it off.
init();