How To Set Up Excerpts For Pages?
-
I know you can have excerpts for pages now with WP 3.0 by addaction() of add_post_type_support( ‘page’, ‘excerpt’ ); but what I want to do is pull in a page excerpt but not on the page by doing something like
$page_id = 152;
$page_data = get_page( $page_id );
get_page_excerpt($page_data or $page_id);so I can display the excerpt of the page in a widget.
Anyone know how to do this?
Thanks
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How To Set Up Excerpts For Pages?’ is closed to new replies.