meta-box
Last commit date
css
4 years ago
img
8 years ago
inc
3 years ago
js
3 years ago
meta-box.php
3 years ago
readme.txt
3 years ago
meta-box.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Plugin Name: Meta Box |
| 4 | * Plugin URI: https://metabox.io |
| 5 | * Description: Create custom meta boxes and custom fields in WordPress. |
| 6 | * Version: 5.6.8 |
| 7 | * Author: MetaBox.io |
| 8 | * Author URI: https://metabox.io |
| 9 | * License: GPL2+ |
| 10 | * Text Domain: meta-box |
| 11 | * Domain Path: /languages/ |
| 12 | * |
| 13 | * @package Meta Box |
| 14 | */ |
| 15 | |
| 16 | if ( defined( 'ABSPATH' ) && ! defined( 'RWMB_VER' ) ) { |
| 17 | require_once dirname( __FILE__ ) . '/inc/loader.php'; |
| 18 | $rwmb_loader = new RWMB_Loader(); |
| 19 | $rwmb_loader->init(); |
| 20 | } |
| 21 |