首页    >    新闻资讯    >   如何嵌入在你的WordPress博客SoundCloud使用oEmbed

如何嵌入在你的WordPress博客SoundCloud使用oEmbed

一个用户向我们询问在WordPress网站中嵌入SoundCloud的简单方法。WordPress一个很好的功能就是oEmbed ,在代码行中贴入URL就可自动嵌入。目前WordPress oEmbed library 支持多种流行的服务如Youtube、 Twitter、 Vimeo等。然而,WordPress目前还不支持SoundCloud。但也无需担心,WordPress 启用wp_oembed_add_provider()功能,用户可轻松地在网站中添加oEmbed提供商。本文将展示如何在WordPress中添加oEmbed以支持SoundCloud。我们只要在主题functions.php文件或site-specific插件中贴入以下代码。

// Add SoundCloud oEmbed 

function add_oembed_soundcloud(){ 

wp_oembed_add_provider( 'http://soundcloud.com/*', 'http://soundcloud.com/oembed' ); 

add_action('init','add_oembed_soundcloud');


比较流行的插件SoundCloud支持多种功能。由于WordPress.com 官网不支持SoundCloud,WordPress.com用户可写入简短的代码。通过WordPress支持的JetPack插件,启动shortcode嵌入选项。完成设置之后,您就可以使用以下简短代码:

[soundcloud url="http://api.soundcloud.com/tracks/207988" iframe="true"/]

希望对寻找在WordPress中嵌入SoundCloud的用户
有所帮助。

分类:新闻资讯

标签:, , , , ,

* 版权声明:作者WordPress啦! 转载请注明出处。