如何将iframe添加到Wordpress侧边栏?

时间:2013-01-05 17:17:50

标签: wordpress

我正在使用默认的TwentyEleven主题,我将以下代码添加到sidebar.php,但它不起作用(我收到310错误)

<iframe src="frame.html" name="test" height="600" width="180"></iframe>

iframe.html位于/ themes / twentyeleven文件夹中,因此它应该正常工作(至少在常规网站上)。

是否有必要使用某种小部件插件才能使其正常工作。什么可以防止iframe出现在网站上?

谢谢。

2 个答案:

答案 0 :(得分:0)

您需要通过http请求命中该文件,而不是通过本地路径。

class A{
  public:
    void Callback();
    static void CallbackStatic(void* self){
      static_cast<A*>->CallBack();
    };
};

答案 1 :(得分:-1)

在给出路径之前你应该使用get_bloginfo('template_directory')....... 尝试使用 {

<iframe src="<?php echo get_theme_root(); ?>/frame.html" name="test" height="600" width="180"></iframe>

}

试试这个 http://codex.wordpress.org/Function_Reference/get_theme_root