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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
博客园 - 叶小钗
The Cloudflare Blog
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
小众软件
小众软件
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享

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.