wordpress的简单iframe快捷码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wordpress的简单iframe快捷码相关的知识,希望对你有一定的参考价值。

this is a simple script to take iframe parameters and build an iframe via a shortcode
  1. add_shortcode('iframe', 'iframe');
  2. function iframe($atts) {
  3. extract(shortcode_atts(array(
  4. 'src' => "",
  5. 'width' => "800",
  6. 'height' => "600"
  7. ), $atts));
  8.  
  9. $iframe = '<iframe src="'.$src.'" width="'.$width.'" height="'.$height.'" scrolling="no" allowtransparency="yes" frameborder="0" ></iframe>';
  10.  
  11. return $iframe;
  12. }

以上是关于wordpress的简单iframe快捷码的主要内容,如果未能解决你的问题,请参考以下文章

WordPress 中的响应式 iframe

Wordpress RSS快捷码

模板中的WordPress快捷码

WordPress快捷码

Wordpress相关帖子快捷码

Wordpress自动关闭快捷码