• What is the best way to download files from a post or page, whether they be images or music?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Insert a link onto that page that links to the image/music file, and let users download by clicking on that link.

    Thread Starter Famous

    (@famous)

    I was think of something a little more automatic. Like a link on the html5 audio player.

    OK, that’s not downloading the files. That’s playing audio/video files. There’s a big difference. 🙂

    If you want to do it that way you just need to add in the correct tag the same way that you’d add in any other HTML to your post/pages content. As an example…

    <audio autoplay="autoplay" controls="controls">
       <source src="music.ogg" />
       <source src="music.mp3" />
    </audio>

    Just change the file names to point to your audio files and that’s really all that it takes.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘download files’ is closed to new replies.