我正在创建我的第一个主题。
如果我将以下内容添加到帖子中,视频将在网站上显示良好:
<p style="text-align: center;"><video width="320" height="240" controls="controls">
<source src="http://domain.com/videos/whatever.ogv" type="video/ogg" />
Install <a href="http://www.mozilla.org/pt-BR/firefox" target="_blank">
<strong>Firefox</strong></a> or <a href="https://www.google.com/chrome" target="_blank">
<strong>Chrome</strong></a> to watch the video.</video></p>
<p style="text-align: center;"><a href="http://localhost/2012/02videos/">go back</a></p>
然而,如果我加上
the same content 对于页面,这是我在查看源代码时得到的结果:
<p>Instal Firefox or Chrome to watch the video. go back <a href="http://localhost/page/">Read more</a></p>
无论是新的帖子/页面还是我更改现有帖子/页面的内容,这都无关紧要。我正在运行WP 3.6 pt br,我已禁用所有插件,问题仍然存在。如果我使用其他主题(十三、十等),一切都很好。我的职能。php文件为空。
最合适的回答,由SO网友:That Brazilian Guy 整理而成
就当前主题而言,没有page.php
文件存在,因此WordPress正在读取index.php
并且,根据主题的指示,显示the_excerpt()
. 它将剥离许多标签,包括<video>
, 这就是发生的事情。
帖子的内容主要根据文件的内容显示single.php
, 但对于页面,它(主要)是文件page.pgp
. (有关更详细的信息,请参阅the Template Hierarchy section on the Codex).