Skip to content

Instantly share code, notes, and snippets.

@davidperezgar
Created November 7, 2016 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidperezgar/0c60d4faf27ee25a32147e38c136bd40 to your computer and use it in GitHub Desktop.
Save davidperezgar/0c60d4faf27ee25a32147e38c136bd40 to your computer and use it in GitHub Desktop.
Adds Excerpts to Pages in WordPress
add_action( 'init', ‘cmk_add_excerpts_to_pages' );
function cmk_add_excerpts_to_pages() {
add_post_type_support( 'page', 'excerpt' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment