ID, $value, true ); if ( ! empty( $field ) ) { return is_array( $field ) ? stripslashes_deep( $field ) : stripslashes( wp_kses_decode_entities( $field ) ); } else { return false; } } function video_embed_code_add_meta_box() { add_meta_box( 'video_embed_code-video-embed-code', __( 'Video Embed Code', 'brubeck' ), 'video_embed_code_html', 'post', 'normal', 'high' ); } add_action( 'add_meta_boxes', 'video_embed_code_add_meta_box' ); function video_embed_code_html( $post) { wp_nonce_field( '_video_embed_code_nonce', 'video_embed_code_nonce' ); ?>

This meta box is only for the video post format. Get your video embed code and paste it here.

ID, $value, true ); if ( ! empty( $field ) ) { return is_array( $field ) ? stripslashes_deep( $field ) : stripslashes( wp_kses_decode_entities( $field ) ); } else { return false; } } function audio_embed_code_add_meta_box() { add_meta_box( 'audio_embed_code-audio-embed-code', __( 'Audio Embed Code', 'brubeck' ), 'audio_embed_code_html', 'post', 'normal', 'high' ); } add_action( 'add_meta_boxes', 'audio_embed_code_add_meta_box' ); function audio_embed_code_html( $post) { wp_nonce_field( '_audio_embed_code_nonce', 'audio_embed_code_nonce' ); ?>

This meta box is only for the audio post format. Get your audio embed code and paste it here.