【发布时间】:2017-01-18 15:55:26
【问题描述】:
Need Help Removing Download Button_Image
我在我的 WP 页面上附加了媒体播放器的图像。它刚刚出现在我的播放器上,之前(上个月)没有。我还没有为 mediaelement.js 做任何插件升级,所以我不知道这是从哪里来的。我想删除下载按钮,但我不确定在 WordPress 中的哪个位置以及如何隐藏它。
<td class="files"> <audio id="wp_mep_2" controls="controls" preload="none">
<source src="http://xxxxxxx.org/?page_id=1743&show&file_name=JesusistheDifferenceMaker.mp3" type="audio/mp3">
<object width="250" height="30" type="application/x-shockwave-flash" data="http://xxxxxxx.org/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf">
<param name="movie" value="http://xxxxxxx.org/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf">
<param name="flashvars" value="controls=true&file=http://xxxxxxx.org/?page_id=1743&show&file_name=JesusistheDifferenceMaker.mp3">
</object>
</audio>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#wp_mep_2').mediaelementplayer({
m:1
,features: ['playpause','current','progress','duration','volume','tracks','fullscreen']
,audioWidth:250,audioHeight:30
});
});
</script>
</td>
【问题讨论】:
-
有谁知道怎么去掉下载按钮?