ID, '_et_allmed_video_url', true );
$allm_fs_audio_mp3 = get_post_meta( $post->ID, '_et_allmed_audio_mp3_url', true );
$allm_fs_audio_ogg = get_post_meta( $post->ID, '_et_allmed_audio_ogg_url', true );
?>
post_type );
if ( !current_user_can( $post_type->cap->edit_post, $post_id ) )
return $post_id;
if ( !isset( $_POST['allm_settings_nonce'] ) || !wp_verify_nonce( $_POST['allm_settings_nonce'], basename( __FILE__ ) ) )
return $post_id;
if ( isset($_POST["allm_fs_video"]) ) update_post_meta( $post_id, "_et_allmed_video_url", esc_url_raw( $_POST["allm_fs_video"] ) );
if ( isset($_POST["allm_fs_audio_mp3"]) ) update_post_meta( $post_id, "_et_allmed_audio_mp3_url", esc_url_raw( $_POST["allm_fs_audio_mp3"] ) );
if ( isset($_POST["allm_fs_audio_ogg"]) ) update_post_meta( $post_id, "_et_allmed_audio_ogg_url", esc_url_raw( $_POST["allm_fs_audio_ogg"] ) );
} ?>