在WordPress中将短代码转换为YouTube链接

时间:2018-11-27 12:50:58

标签: wordpress youtube amp-html

我需要转换此简码:

[youtube id="ElWkGqhoDfE" width="720" height="380"]

与YouTube链接类似

https://www.youtube.com/watch?v=ElWkGqhoDfE

因此,当在WordPress AMP中加载页面时,我需要对其进行转换

我该怎么做?

2 个答案:

答案 0 :(得分:0)

检查是否有效, 只需

$shortcode = do_shortcode('[youtube id="ElWkGqhoDfE" width="720" height="380"]'); 
echo $shortcode;

现在$ shortcode可供进一步使用

答案 1 :(得分:0)

您可以使用此功能

function get_shortcode($code){
if (strpos($code, 'youtube') !== false) {
    $youtube = explode(" ", $code);
    $youId = str_replace('"', "" ,str_replace('id="', "", $youtube[1]));
    $link = 'https://www.youtube.com/watch?v='.$youId ;
    return $link;
}
}
$shortcode = '[youtube id="ElWkGqhoDfE" width="720" height="380"]' ;
echo get_shortcode($shortcode);