Skip to content

Instantly share code, notes, and snippets.

@mohsinr
Created October 29, 2015 10:24
Show Gist options
  • Save mohsinr/f5436dc4d52b9a6b618d to your computer and use it in GitHub Desktop.
Save mohsinr/f5436dc4d52b9a6b618d to your computer and use it in GitHub Desktop.
Add Excerpts Support for WordPress Pages
<?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