Last active
August 29, 2015 14:27
-
-
Save thierrypigot/000d1ebe4f51241bfe1b to your computer and use it in GitHub Desktop.
Add excerpts to pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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