10 09/2014

wordpress get the content with format

最后更新: Wed Sep 10 2014 12:39:11 GMT+0800

wordpress 的 the_content() 返回处理过换行的 html。而 get_the_content() 返回是纯文本。

如果希望 get_the_content() 也过滤的话:

<?php $content = get_the_content();
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
?>