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

推荐订阅源

B
Blog
Hugging Face - Blog
Hugging Face - Blog
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
F
Fortinet All Blogs
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Jina AI
Jina AI
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
美团技术团队
博客园 - 司徒正美
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research

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.