需要在侧边栏中显示帖子摘要

时间:2019-05-15 作者:Rajitha

我需要在侧边栏中显示每个帖子的摘要。有没有办法做到这一点?

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

简单的方法是使用-excerpt() 否则您也可以使用wp_trim_words( get_the_content(), 40, \'...\' );

在a中excerpt(), 您必须在后端的摘录中添加内容。虽然wp_trim_words 将从内容中删除单词。

在提要栏中,您必须向函数中添加短代码。在侧栏小部件中使用的php文件(如果您使用的是小部件)。

function test_short(){
    ob_start();
    global $post;
    echo wp_trim_words( get_the_content($post->ID), 40, \'...\' );
    return ob_get_clean();
}

add_shortcode(\'test_short\', \'test_short\');

相关推荐

Child page excerpt

我有一个包含一些子页面的父页面。我想做的是在父页面上的自己的单元格中显示每个子页面摘录和一些其他信息。有人知道如何做到这一点吗?<div class=\"parent page\"> <?php $args = array( \'parent\' => $post->ID, \'post_type\' => \'page\', \'post_status\'