【问题标题】:Wordpress - the_excerpt() not workingWordpress - the_excerpt() 不起作用
【发布时间】:2014-01-24 11:38:17
【问题描述】:

我一直致力于将 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 使用量迅速增加,并且一直如此,但我从未收到视频。

这是什么原因?我做错了什么吗?我的问题还有其他替代解决方案吗?

【问题讨论】:

    标签: youtube wordpress-theming wordpress


    【解决方案1】:

    尝试用&lt;? echo get_the_excerpt(); ?&gt; 代替&lt;? the_excerpt(); ?&gt;,因为the_excerpt() 会在屏幕上打印用&lt;p&gt; 标记包裹的摘录,而get_the_excerpt() 会在没有&lt;p&gt; 标记的情况下返回它

    【讨论】:

      猜你喜欢
      • 2017-10-01
      • 2013-08-13
      • 2021-09-13
      • 2012-05-03
      • 2017-09-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多