📅  最后修改于: 2022-03-11 14:56:30.159000             🧑  作者: Mango
add_action( 'init', 'my_add_excerpts_to_pages' );
function my_add_excerpts_to_pages() {
add_post_type_support( 'page', 'excerpt' ); //change page with your post type slug.
}