Skip to content

Instantly share code, notes, and snippets.

@ControlledChaos
Last active October 31, 2016 23: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 ControlledChaos/c90d59b81b9d884d75f2 to your computer and use it in GitHub Desktop.
Save ControlledChaos/c90d59b81b9d884d75f2 to your computer and use it in GitHub Desktop.
Add excerpts to WordPress pages.

Add Excerpts to Pages

WordPress Snippet

<?php
function ccd_page_excerpts() {
add_post_type_support( 'page', 'excerpt' );
}
add_action( 'init', 'ccd_page_excerpts' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment