也许不是正确的论坛,但我希望能够在wordpress网站的新页面上添加soundcloud频道rss feed。我尝试了一些rss feed聚合器并将相关的短代码添加到页面中,但它仍然不会显示页面上的各个曲目。我希望它们的渲染方式与嵌入帖子时的渲染方式相同。
有什么想法吗?
由于
答案 0 :(得分:1)
快速而苛刻的方式可能是这样的,你需要将这个脚本添加到页面或修改模板,页面 - 取决于你的设置。
我也会加一个循环。
希望这会对你有所帮助。
$(function(){
url = 'http://feeds.soundcloud.com/users/soundcloud:users:46971334/sounds.rss';
$.ajax({
type: "GET",
url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=1000&callback=?&q=' + encodeURIComponent(url),
dataType: 'json',
error: function(){
alert('Unable to load feed, Incorrect path or invalid feed');
},
success: function(xml){
values = xml.responseData.feed.entries;
$('#feeditems').append('<iframe width="300" height="300" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=' + values[0].link + '&auto_play=false&hide_related=false&visual=true"></iframe>');
$('#feeditems').append('<br/>');
$('#feeditems').append('<iframe width="300" height="300" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=' + values[1].link + '&auto_play=false&hide_related=false&visual=true"></iframe>');
}
});
});