iframe返回404

时间:2014-07-12 19:13:56

标签: wordpress iframe themes http-status-code-404

我创建了我的第一个wordpress主题,但我遇到了iframe的问题。 在wordpress我使用" iframe"这个短代码的插件:

[iframe
border="0"
name="iframe"
src="http://www.parshid.com/projects/bide-majnun/first.php"
width="100%"
height="800px"
scrolling="no"
frameborder="0"
onload="document.getElementById('loadImg').style.display='none';"]

它运作得很好但现在我的新主题它返回" 404 - Not Found"错误。

提前感谢:)

1 个答案:

答案 0 :(得分:1)

不要添加换行符,这是您的问题。

[iframe border="0" name="iframe" src="http://www.parshid.com/projects/bide-majnun/first.php" width="100%" height="800px" scrolling="no" frameborder="0" onload="document.getElementById('loadImg').style.display='none';"]

一旦你这样做,它对我来说非常适合。