Display audio file in audio.php

This is gonna sound stupid, but I couldn't find the answer anywhere: I need to have an attachment page for audio files (audio.php), but I have no idea how to display the media player on this page. When I use the_content(), it doesn't display the file itself.

I think I have to use the audio shortcode, but I don't know how to retrieve the id for audio files.

Topic audio attachments Wordpress

Category Web


It took me a while to figure this out... In the end all it takes is:

<?php
echo wp_audio_shortcode(
    array( "src" => wp_get_attachment_url() )
);
?>

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.