wordpress的简单iframe快捷码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wordpress的简单iframe快捷码相关的知识,希望对你有一定的参考价值。
this is a simple script to take iframe parameters and build an iframe via a shortcode
add_shortcode('iframe', 'iframe'); function iframe($atts) { 'src' => "", 'width' => "800", 'height' => "600" ), $atts)); $iframe = '<iframe src="'.$src.'" width="'.$width.'" height="'.$height.'" scrolling="no" allowtransparency="yes" frameborder="0" ></iframe>'; return $iframe; }
以上是关于wordpress的简单iframe快捷码的主要内容,如果未能解决你的问题,请参考以下文章