【发布时间】:2018-11-27 12:50:57
【问题描述】:
我需要转换这个简码:
[youtube id="ElWkGqhoDfE" width="720" height="380"]
到 Youtube 链接喜欢
https://www.youtube.com/watch?v=ElWkGqhoDfE
所以,我需要在 WordPress AMP 中加载页面时对其进行转换
我该怎么做?
【问题讨论】:
标签: wordpress youtube amp-html
我需要转换这个简码:
[youtube id="ElWkGqhoDfE" width="720" height="380"]
到 Youtube 链接喜欢
https://www.youtube.com/watch?v=ElWkGqhoDfE
所以,我需要在 WordPress AMP 中加载页面时对其进行转换
我该怎么做?
【问题讨论】:
标签: wordpress youtube amp-html
你可以使用这个功能
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);
【讨论】:
检查是否有效, 简单的做
$shortcode = do_shortcode('[youtube id="ElWkGqhoDfE" width="720" height="380"]');
echo $shortcode;
现在 $shortcode 可供进一步使用
【讨论】:
$shortcode = do_shortcode('[youtube id="ElWkGqhoDfE" width="720" height="380"]'); echo $shortcode;