'test_metabox', 'title' => __( 'Testimonial Options', 'cmb' ), 'pages' => array( 'testimonial'), // Post type 'context' => 'normal', 'priority' => 'high', 'show_names' => true, // Show field names on the left 'fields' => array( array( 'name' => __( 'Username', 'cmb' ), 'desc' => __( 'Enter username', 'cmb' ), 'id' => $prefix . 'testimonial_usermane', 'type' => 'text', ), array( 'name' => __( 'User Url', 'cmb' ), 'desc' => __( 'Enter User Url', 'cmb' ), 'id' => $prefix . 'testimonial_url', 'type' => 'text', ), ), ); return $meta_boxes; } add_action( 'init', 'cmb_initialize_cmb_meta_boxes', 9999 ); /** * Initialize the metabox class. */ function cmb_initialize_cmb_meta_boxes() { if ( ! class_exists( 'cmb_Meta_Box' ) ) require_once 'cmb/init.php'; }