Created
October 29, 2015 10:24
-
-
Save mohsinr/f5436dc4d52b9a6b618d to your computer and use it in GitHub Desktop.
Add Excerpts Support for WordPress 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 Post Excerpt Support to WordPress Pages | |
add_action( 'init', 'my_add_excerpts_to_pages' ); | |
function my_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