会员登录 | 会员注册 | 意见建议 | 网站地图

站长资源综合门户

当前位置:首页 > 站长学院 > 建站经验 > 如何嵌入在你的WordPress博客SoundCloud使用oEmbed

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

时间:2012-07-09 18:35:28   作者:   来源:   点击:

一个用户向我们询问在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/*', 'http://soundcloud/oembed');

}

add_action('init','add_oembed_soundcloud');

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

[soundcloud url="http://apiundcloud/tracks/207988" iframe="true"/]

希望对寻找在WordPress中嵌入SoundCloud的用户。

有所帮忙。

文章来历:wordpress

分享到:

网友评论

热门建站经验