Created
August 27, 2013 21:36
-
-
Save AMNDesign/6359478 to your computer and use it in GitHub Desktop.
Add excerpts post type support for pages in WordPress.
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 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