esc_html__('Insert Gallery Images', 'canopus'), "desc" => esc_html__('If you set the Featured Image then it will be only shown on Single', 'canopus'), "id" => "gallery_image_ids", "type" => 'gallery' ) ); $ever_audio = array( array("name" => esc_html__('MP3 File URL', 'canopus'), "desc" => esc_html__('The URL to the .mp3 audio file', 'canopus'), "id" => "format_audio_mp3", "type" => "text", 'std' => '' ), array("name" => esc_html__('Embeded Code', 'canopus'), "desc" => esc_html__('The embed code', 'canopus'), "id" => "format_audio_embed", "type" => "textarea", 'std' => '' ) ); $ever_video = array( array("name" => esc_html__('Video Link URL', 'canopus'), "desc" => esc_html__('If you\'re not using self hosted video then you can include video link url here. (Not Embed)', 'canopus'), "id" => "format_video_embed", "type" => "textarea", 'std' => '' ) ); add_meta_box('strtm-format-gallery', esc_html__('Gallery Settings', 'canopus'), 'canopus_postmetabox', 'post', 'normal', 'high', $ever_image); add_meta_box('strtm-format-audio', esc_html__('Audio Settings', 'canopus'), 'canopus_postmetabox', 'post', 'normal', 'high', $ever_audio); add_meta_box('strtm-format-video', esc_html__('Video Settings', 'canopus'), 'canopus_postmetabox', 'post', 'normal', 'high', $ever_video); }