对于每个帖子,我都有内容和摘录。我正在试图找出如何在单个贴子页面中包含这两个方面。
到目前为止,我的情况是:
function after_post_content($content){
if (is_single()) {
$content .= \'I need the excerpt to be displayed here.\';
}
return $content;
}
add_filter( "the_content", "after_post_content" );
如果您能在帖子内容下方添加帖子摘录,我们将不胜感激。
最合适的回答,由SO网友:user3512522 整理而成
我是这样做的:
function after_post_content($content){
if (is_single()) {
$content .= the_excerpt();
}
return $content;
}
add_filter( "the_content", "after_post_content");