forked from wpmetabox/meta-box
-
Notifications
You must be signed in to change notification settings - Fork 1
/
meta-box.php
50 lines (40 loc) · 1.4 KB
/
meta-box.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
40
41
42
43
44
45
46
47
48
49
50
<?php
/*
Plugin Name: Meta Box
Plugin URI: http://metabox.io
Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
Version: 4.5.7
Author: Rilwis
Author URI: http://www.deluxeblogtips.com
License: GPL2+
Text Domain: meta-box
Domain Path: /lang/
*/
// Prevent loading this file directly
defined( 'ABSPATH' ) || exit;
// Script version, used to add version for scripts and styles
define( 'RWMB_VER', '4.5.7' );
// Define plugin URLs, for fast enqueuing scripts and styles
if ( ! defined( 'RWMB_URL' ) )
define( 'RWMB_URL', plugin_dir_url( __FILE__ ) );
define( 'RWMB_JS_URL', trailingslashit( RWMB_URL . 'js' ) );
define( 'RWMB_CSS_URL', trailingslashit( RWMB_URL . 'css' ) );
// Plugin paths, for including files
if ( ! defined( 'RWMB_DIR' ) )
define( 'RWMB_DIR', plugin_dir_path( __FILE__ ) );
define( 'RWMB_INC_DIR', trailingslashit( RWMB_DIR . 'inc' ) );
define( 'RWMB_FIELDS_DIR', trailingslashit( RWMB_INC_DIR . 'fields' ) );
require_once RWMB_INC_DIR . 'common.php';
require_once RWMB_INC_DIR . 'field.php';
require_once RWMB_INC_DIR . 'field-multiple-values.php';
// Field classes
foreach ( glob( RWMB_FIELDS_DIR . '*.php' ) as $file )
{
require_once $file;
}
// Meta box class
require_once RWMB_INC_DIR . 'meta-box.php';
// Helper function to retrieve meta value
require_once RWMB_INC_DIR . 'helpers.php';
// Main file
require_once RWMB_INC_DIR . 'init.php';