一个用户向我们询问在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