wordpress如何支持iframe嵌入

玩技站长
玩技站长
玩技站长
管理员, Keymaster
10735
文章
669
评论
运维笔记评论521字数 95阅读0分19秒阅读模式

wordpress如何支持iframe嵌入插图

第一步:首先在自己的主题下的function.php文件中添加以下代码文章源自玩技e族-https://www.playezu.com/26496.html

function add_iframe($atts) {
    extract(shortcode_atts(array(
    'src' => '/'
    ), $atts));
  $theframe = '<iframe src="'.$src.'" width="420" height="315" frameborder="0"></iframe>';
  return $theframe;
}
add_shortcode('iframe', 'add_iframe');

第二步:在页面或者文章页面添加例如下格式代码文章源自玩技e族-https://www.playezu.com/26496.html

<iframe src="https://myplugin.speedtest.cn/playezu" width="100%" height="900"></iframe>
文章源自玩技e族-https://www.playezu.com/26496.html文章源自玩技e族-https://www.playezu.com/26496.html
 
匿名

发表评论

匿名网友
确定

拖动滑块以完成验证