奇怪的 iframe 加入到身体标签中,称为“红褐色沙盒”

我正在一个本地的 WordPress 站点工作,由于某种原因,在打开 body标签之后添加了一个 iframe,这使得正文下降了大约20px。

谷歌搜索时只返回了一个相关结果,而我在那里读到的也没有多大帮助。可以找到 给你

WordPress 站点没有安装插件,设置为 display: none;不起作用。

下面是 Chrome 浏览器的截图,你可以看到:

enter image description here

41983 次浏览

It seems like it is added by the Twitter script. If you remove it the iframe will disappear. It sure looks like you have the Twitter plugin installed in some way or the other as you can see it says data-twttr-rendered="true" in the body tag.

If you remove the code - in my case the code below - it will disappear

<script type="text/javascript">
(function(){
var twitterWidgets = document.createElement('script');
twitterWidgets.type = 'text/javascript';
twitterWidgets.async = true;
twitterWidgets.src = '//platform.twitter.com/widgets.js';
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
})();
</script>