* @copyright Copyright (c) 2018, Radiuzz * @link http://caelum.radiuzz.com * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2 or later */ /** * Registering meta boxes * */ add_filter( 'rwmb_meta_boxes', 'caelum_Post_Meta_Box' ); /** Register meta boxes **/ function caelum_Post_Meta_Box( $meta_boxes ) { // Better has an underscore as last sign $prefix = 'caelum__'; // Gallery Format Metabox $meta_boxes[] = array( 'id' => 'caelum_Post_Metas', 'title' => esc_html__( 'Post Setting', 'caelum' ), 'post_types' => array( 'post' ), 'context' => 'normal', 'priority' => 'high', 'autosave' => true, 'fields' => array( // FEATURED CHECKBOX array( 'name' => esc_html__( 'Checkbox', 'caelum' ), 'id' => "{$prefix}featured", 'desc' => esc_html__( 'Mark this post as a featured to show on featured posts slider.', 'caelum' ), 'type' => 'checkbox', 'std' => 0, ), ) ); return $meta_boxes; }