如何在WordPress主题中显示页面摘要

如何在WordPress主题中显示页面摘要,wordpress,Wordpress,我的搜索结果不显示WordPress上页面的摘录内容,它只显示文章 请告知摘自 添加对“页面”帖子类型的摘录支持。将此代码粘贴到主题functions.phpfile(ref)wordpress中没有页面摘录 <?php add_action('init', 'my_custom_init'); function my_custom_init() { add_post_type_support( 'page', 'excerpt' ); } ?>

我的搜索结果不显示WordPress上页面的摘录内容,它只显示文章 请告知

摘自



添加对“页面”帖子类型的摘录支持。将此代码粘贴到主题
functions.php
file(ref)

wordpress中没有页面摘录
<?php
add_action('init', 'my_custom_init');
function my_custom_init() {
    add_post_type_support( 'page', 'excerpt' );
}
?>