10
09/2014
wordpress get the content with format
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); ?>