Skip to content

Instantly share code, notes, and snippets.

@baczoni
Created April 24, 2012 15:55
Show Gist options
  • Select an option

  • Save baczoni/2480964 to your computer and use it in GitHub Desktop.

Select an option

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