我需要转换此简码:
[youtube id="ElWkGqhoDfE" width="720" height="380"]
与YouTube链接类似
https://www.youtube.com/watch?v=ElWkGqhoDfE
因此,当在WordPress AMP中加载页面时,我需要对其进行转换
我该怎么做?
答案 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);