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