我一直致力于将html页面转换为wordpress。我已成功转换元素。但我的滑块有一个嵌入式YouTube视频。以下代码,如果来自我的html主题
<iframe width="420" height="345"
src="http://www.youtube.com/embed/XGSy3_Czz8k">
</iframe>
我希望将此YouTube链接作为帖子。
我尝试了什么
<?php query_posts('cat=3','&posts_per_page=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<iframe width="420" height="345"
src="<? the_excerpt(); ?>">
</iframe>
<?php endwhile;?>
发生了什么事?
我注意到我的RAM使用量迅速增加,并继续保持相同,我从未得到过视频。
这是什么原因?我做错了什么吗?我的问题还有其他替代解决方案吗?
答案 0 :(得分:2)
尝试<? echo get_the_excerpt(); ?>
代替<? the_excerpt(); ?>
,the_excerpt()
打印屏幕上<p>
标记中包含的摘录,get_the_excerpt()
返回时不<p>
标签