WordPress 的 iframe 实现
有谁知道在 WordPress 网站上实现 iframe 的方法吗?每次我将代码放到正确的页面上时,wordpress 都会删除我的代码并且 iframe 会中断。
我想知道是否有一个插件可以让 iframe 代码保持完整,或者是否有某种形式的短代码可供使用。
我尝试过: [iframe url =“http://www.youtube.com/embed/X3kLPtVjjhA”宽度=“579”高度=“360”] [fixiframe url =“http://www.youtube.com/embed/X3kLPtVjjhA”宽度=“579”高度=“360”] 并在我的网站上安装了“embed iframe”插件,但它们似乎都不起作用。
我很感激你的帮助。
Does anyone know a way to implement an iframe on a WordPress website. Every time I place the code onto the correct page, wordpress strips my code and the iframe breaks.
I was wondering if there was a plugin that allows iframe code to stay intact or if there is some form of shortcode to use.
I have tried:
[iframe url="http://www.youtube.com/embed/X3kLPtVjjhA" width="579" height="360"]
[fixiframe url="http://www.youtube.com/embed/X3kLPtVjjhA" width="579" height="360"]
and installed the "embed iframe" plug-in on my site but none of them seem to work.
I appreciate the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要 iframe 来发布 YouTube 视频,而是在 wordpess 中回答有关 iframe 的问题。
我不确定这些插件的作用。您可以创建页面模板并在页面中包含 iframe,而无需使用任何插件。
创建一个新的页面模板并在该页面模板的 php 代码中添加 iframe。更具体地说,创建 page.php 的副本并重命名。在文件开头的注释中,将模板文件名所在行编辑为
模板名称:MyPage
。编辑页面代码并在需要的地方添加 iframe 代码。并在页面编辑部分 wp-admin 中选择此模板(MyPage)作为您页面的模板。您还可以将嵌入代码作为元信息添加到 wp-admin 的页面中,并在代码中获取此元信息以显示 iframe。这样,您就可以通过一个模板为不同的页面使用不同的 iframe。
如果您需要这方面的帮助,请告诉我。我将发布完整的解决方案
You don't need an iframe to post a youtube video, but to answer your questions about iframes in wordpess..
I am not sure what those plugins do. You can create page templates and have iframes in your pages without using any plugins.
Create a new page template and add the iframe in the php code for that page template. More specifically, create a copy of page.php and rename it. In the comments at the beginning of the file, edit the line with the template file name to
Template Name: MyPage
. Edit the page code and add iframe code where you need it. And select this template (MyPage) as the template for your page in page edit section wp-admin.You can also add the embed code as meta information to page in wp-admin, and fetch this meta information in the code to display the iframe. In this way, you can use different iframes for different pages with a single template.
Let me know if you need help with this. I will post a complete solution
为什么你使用
iframe
来加载 Youtube 视频,你应该使用它们在视频下显示的embed
标签...我的 WordPress 中有 iframe,用于所有Facebook/twitter 按钮,它们工作得很好!
Why are you using an
iframe
to load a Youtube video, you should use theembed
tag that they show under the video...I have iframes in my wordpress for all the Facebook/twitter buttons and they work great!