Skip to content

Instantly share code, notes, and snippets.

@AMNDesign
Created August 27, 2013 21:36
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 AMNDesign/6359478 to your computer and use it in GitHub Desktop.
Save AMNDesign/6359478 to your computer and use it in GitHub Desktop.
Add excerpts post type support for pages in WordPress.
<?php
//* Add excerpts post type support for pages
add_action('init', 'amn_page_excerpts');
function amn_page_excerpts() {
add_post_type_support( 'page', 'excerpt');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment