将下载按钮添加到oembed Player for MP3 Wordpress中

时间:2019-03-20 20:50:46

标签: wordpress filter oembed

我想在WordPress的本机播放器末尾添加一个下载按钮。

发件人: enter image description here

收件人: enter image description here

但是,我是刚入门的,不知道该怎么做。我想我应该使用apply_filters('oembed_result',string | false $ data,字符串$ url,数组$ args)或apply_filters('embed_oembed_html',混合$ cache,字符串$ url,数组$ attr,int $ post_ID)但不知道如何工作。

我正在尝试

add_filter('embed_oembed_html', 'custom_youtube_settings', 99, 4);
function custom_youtube_settings($cache, $url, $attr, $post_id) {
return '<div class="download-wrapper">DOWNLOAD' . $cache . 
'</div>';
}

但是它似乎没有输出DOWNLOAD。只是普通玩家。

任何帮助将不胜感激。谢谢!

0 个答案:

没有答案
相关问题