PHP 用于wordpress的简单iframe短代码

Posted

tags:

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

add_shortcode('iframe', 'iframe');
function iframe($atts) {
   extract(shortcode_atts(array(
      'src' => "",
      'width' => "800",
      'height' => "600"
   ), $atts));

   $iframe = '<iframe src="'.$src.'" width="'.$width.'" height="'.$height.'" scrolling="no" allowtransparency="yes" frameborder="0" ></iframe>';
   
   return $iframe;
}

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