You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
491 B
21 lines
491 B
9 months ago
|
<?php
|
||
|
/**
|
||
|
* Plugin Name: Meta Box
|
||
|
* Plugin URI: https://metabox.io
|
||
|
* Description: Create custom meta boxes and custom fields in WordPress.
|
||
|
* Version: 5.9.4
|
||
|
* Author: MetaBox.io
|
||
|
* Author URI: https://metabox.io
|
||
|
* License: GPL2+
|
||
|
* Text Domain: meta-box
|
||
|
* Domain Path: /languages/
|
||
|
*
|
||
|
* @package Meta Box
|
||
|
*/
|
||
|
|
||
|
if ( defined( 'ABSPATH' ) && ! defined( 'RWMB_VER' ) ) {
|
||
|
require_once __DIR__ . '/inc/loader.php';
|
||
|
$rwmb_loader = new RWMB_Loader();
|
||
|
$rwmb_loader->init();
|
||
|
}
|