在RSS提要中的CDATA上取消转义属性the_title()

时间:2013-07-12 作者:Franz Noel

我的目标是unescape the string.

那么,我该如何在Wordpress中做到这一点呢?假设我有下面的整个字符串:

He said, “This is how it works...”
我似乎找不到内置的Wordpress函数来取消浏览“”. 如果在上使用unescapethe_title() (很抱歉之前没有指定)。

在rss提要项上,我有以下代码,其中the_title() 不应被替换:

<item>
  <title><![CDATA[<?php the_title(); ?>]]></title>
  <link><?php echo get_permalink(); ?></link>
  <date><?php the_time(get_option(\'date_format\')); ?></date>
</item>

1 个回复
最合适的回答,由SO网友:Krzysiek Dróżdż 整理而成

我想没有。逃避比逃避更难(你已经决定了到底要逃避什么,在哪里)。

只需使用PHPhtml_entity_decode 作用

结束