如何将摘录附加到单帖页面的内容中?

时间:2017-08-10 作者:user3512522

对于每个帖子,我都有内容和摘录。我正在试图找出如何在单个贴子页面中包含这两个方面。

到目前为止,我的情况是:

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" );
如果您能在帖子内容下方添加帖子摘录,我们将不胜感激。

1 个回复
最合适的回答,由SO网友:user3512522 整理而成

我是这样做的:

function after_post_content($content){
if (is_single()) {  
    $content .= the_excerpt();
}
    return $content;
}
add_filter( "the_content", "after_post_content"); 

结束

相关推荐

Make loop alphabetical

我有一个简单的循环,但它以任意顺序返回。我要找的是按字母顺序排列循环。我尝试了一些不同的方法,但似乎无法奏效。<?php // Start the loop. while ( have_posts() ) : the_post(); // Include the page content template. get_template_part( \'content\', \'grid-projects\' ); // End t