Skip to content

Instantly share code, notes, and snippets.

@digiltd
Last active September 14, 2015 15:53
Show Gist options
  • Save digiltd/726b8b81c1b2c0bd9293 to your computer and use it in GitHub Desktop.
Save digiltd/726b8b81c1b2c0bd9293 to your computer and use it in GitHub Desktop.
Enable wordPress excerpt on page post types
<?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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment