下面的例子增加了对页面(page)的编辑页面添加“摘要”的输入框(假设它不在“屏幕选项”下显示):

<?php
/**
 * Enables the Excerpt meta box in Page edit screen.
 */
function wpcodex_add_excerpt_support_for_pages() {
	add_post_type_support( 'page', 'excerpt' );
}
add_action( 'init', 'wpcodex_add_excerpt_support_for_pages' );
?>