第一步:首先在自己的主题下的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
评论