惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
IT之家
IT之家
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
V
V2EX
Last Week in AI
Last Week in AI
H
Help Net Security
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
F
Fortinet All Blogs
I
InfoQ
宝玉的分享
宝玉的分享
A
About on SuperTechFans
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
B
Blog

WordPress Plugin

How to Create an Audio Player Playlist from an XML File YouTube Error 153 | WordPress Plugin Wonder Lightbox JavaScript Events | WordPress Plugin How to Create a WordPress Gallery from an XML File How to Remove URL Query Parameters in Wonder Lightbox How to Dynamically Create a WordPress Image and Video Gallery Using WordPress Media Library IDs How to Add an Image to the Lightbox Gallery Without Showing It in the Grid Gallery How to Make the PDF Page Fit the Entire Lightbox Width When Opening a PDF File Double Tap to Play or Pause the WordPress Audio Player on Touch Devices
Copy Audio URL in Wonder Audio Player
2025-12-17 · via WordPress Plugin

Plugin:

Wonder Audio Player

Question:

We need to be able to copy the URL of a track so we can easily send it to clients. If I right click the audio title, nothing happens, and I was hoping to be able to copy the link. Is this possible on the front end? I need an easy way to copy the URL of a track.

Answer:

By default, the title in the playlist is not a direct link to the audio URL, so it cannot be used to directly copy the audio URL.

To add the URL to the title, in the plugin, edit the player, navigate to step 3 Options tab, the Playlist tab, select the option "Customise the playlist item format", then in the following input box, find and replace the text:

%TITLE%

with:

<a href="%AUDIOURL%" onclick="return false;">%TITLE%</a>

For example, for the skin "Bar with Playlist", the final text will be:

<div class='amazingaudioplayer-item-id'>%ID%</div><div class='amazingaudioplayer-item-info'>%DURATION%</div><div class='amazingaudioplayer-item-title'><a href="%AUDIOURL%" onclick="return false;">%TITLE%</a></div>

A demo player is as follows, right clicking on the audio title will give you the option to copy the link address.