如何在增强的小工具中显示带有ReadMore链接的页面摘录?

时间:2013-05-01 作者:James H

我试图在一个增强的小部件中显示一个页面的摘录。

我尝试了以下方法,但无效:

<?php
$id = 2550;
$post = get_post($id);
$content = apply_filters(\'the_content\', $post->post_excerpt);
return  $content;
?>

1 个回复
SO网友:fuxia

使用:

apply_filters( \'get_the_excerpt\', $post->post_excerpt )
这将在摘录中填入post_content 当没有摘录时,因为默认的过滤器会处理这个问题。

结束