我正试图在我为几个朋友建立的音乐网站中嵌入预览的下载链接。他们目前正在用内容填充系统,我正在使用SoundCloud iframe HTML5代码和自定义字段中的机密链接插入曲目页面:
http://www.instrumentalbackgroundmusic.com/royalty-free-music/stutter-glitch-orchestral/
尽管“下载”链接已在SoundCloud中启用,并且在SoundCloud页面上可见,但它没有出现:
https://soundcloud.com/instrumentalbgm/stutter-glitch-orchestral
我有没有办法“强制”下载链接出现?我在SC API中看不到任何关于修改HTML5嵌入代码以显示下载按钮的内容。。。
以下是我当前使用高级自定义字段嵌入的代码:
<?php // Soundcloud preview
if(get_field(\'sc_preview\')) :
echo \'<div class="tempsc">\' . get_field(\'sc_preview\') . \'</div>\';
endif; ?>
例如,有一些嵌入代码:
<iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/110094906"></iframe>
如何嵌入SoundCloud html5小部件并获得“下载”链接以在小部件中工作?如果它涉及到在曲目的URL中添加一些内容,是否有Wordpress函数可以用于正则化嵌入代码并添加此信息?