esc_html__('Video Post Format Options', 'bizmax' ), 'post_type' => 'post', 'post_formats' => array('video'), ) ); CSF::createSection( $bizmax_video_post_meta, array( 'fields' => array( array( 'id' => 'post_video_url', 'type' => 'text', 'title' => esc_html__('Video URL', 'bizmax' ), 'desc' => esc_html__( 'Paste video URL here', 'bizmax' ), ), ) )); // Audio Post Meta $bizmax_audio_post_meta = 'audio_post_format_meta'; CSF::createMetabox( $bizmax_audio_post_meta, array( 'title' => esc_html__('Audio Post Format Options', 'bizmax' ), 'post_type' => 'post', 'post_formats' => array('audio'), ) ); CSF::createSection( $bizmax_audio_post_meta, array( 'fields' => array( array( 'id' => 'audio_embed_code', 'type' => 'code_editor', 'settings' => array( 'theme' => 'monokai', 'mode' => 'htmlmixed', ), 'title' => esc_html__('Audio Embed Code', 'bizmax' ), 'desc' => esc_html__( 'Paste sound cloud audio embed code here', 'bizmax' ), ), ) )); // Gallery Post Meta $bizmax_gallery_post_meta = 'gallery_post_format_meta'; CSF::createMetabox( $bizmax_gallery_post_meta, array( 'title' => esc_html__('Gallery Post Format Options', 'bizmax' ), 'post_type' => 'post', 'post_formats' => array('gallery'), ) ); CSF::createSection( $bizmax_gallery_post_meta, array( 'fields' => array( array( 'id' => 'post_gallery_images', 'type' => 'gallery', 'title' => esc_html__('Gallery Images', 'bizmax' ), 'add_title' => esc_html__('Upload Gallery Images', 'bizmax'), 'edit_title' => esc_html__('Edit Gallery Images', 'bizmax'), 'clear_title' => esc_html__('Remove Gallery Images', 'bizmax'), 'desc' => esc_html__( 'Upload gallery images from here', 'bizmax' ), ), ) ));