WordPress Custom Fields, MetaBox

< ? php
/*
Plugin Name: Featured Youtube Video
Plugin URI: www.coleandmarmalade.com
Description: This is a simple plugin for Bimber theme. When activated, an additional field will be added in the single post editor and you can paste a youtube video link to make it a featured video. This Plugin requires MetaBox plugin.
Version: 1.0
Author: Mart Ray Borromeo
Author URI: https://martrayborromeo.devsier.com
License: GPL2
*/

add_filter('rwmb_meta_boxes', 'hp_metaboxs');

function hp_metaboxs($meta_boxes) {
  $meta_boxes[] = array(
    'title' => 'Cole and Marmalade Featured Youtube Video',
    'fields' => array(
      array(
        'id' => 'featured_video_url',
        'name' => 'Youtube URL',
        'type' => 'text',
      ),
    ),
  );
  return $meta_boxes;
}