Skip to content

Instantly share code, notes, and snippets.

@baczoni
Created April 24, 2012 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baczoni/2480964 to your computer and use it in GitHub Desktop.
Save baczoni/2480964 to your computer and use it in GitHub Desktop.
Wordpress: Enable excerpt for pages
<?php
function my_init() {
add_post_type_support('page', array('excerpt'));
}
add_action('init', 'my_init');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment