How to display WordPress audio player in table

I tried to add default WordPress audio player in the normal HTML table. i want to display all the three below div in same line even in mobile devices. Any possible to do like this or any option to show only play button in audio player or using html5 audio player.

<table><tbody><tr>
<td><div>My audio</div></td>
<td><div>
</div></td>
<td>Date</td>
</tr></tbody></table>

Related posts

1 comment

  1. Replace your DIV

    <div>[audio src="http://www.website.com/123.mp3"]</div>
    

    with this HTML5 tag

    <audio controls>
      <source src="http://www.website.com/your_file.mp3" type="audio/mpeg">
    </audio>
    

Comments are closed.