Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Last active August 29, 2015 14:27
Show Gist options
  • Save thierrypigot/000d1ebe4f51241bfe1b to your computer and use it in GitHub Desktop.
Save thierrypigot/000d1ebe4f51241bfe1b to your computer and use it in GitHub Desktop.
Add excerpts to pages
<?php
/**
* Add excerpts to pages
*/
add_action( 'init', 'eemi_add_excerpts_to_pages' );
function eemi_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