Adding excerpts to Pages

By the Web Warlock, Wednesday, 28/Jul/2010 3:47

You could cut & paste the following code into the functions.php file of your theme, or add it in a plugin form, to allow excerpts for Pages.

<?php add_action( 'init', 'add_excerpt_to_page_post_type' );
function add_excerpt_to_page_post_type(){
  add_post_type_support( 'page', 'excerpt' );
}; ?>

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment