i try to follow this wordpress wiki http://codex.wordpress.org/Function_Reference/get_page
for put on my home page the excerpt of some post, with this code i put on my home page the content
<?php
$page_id = 424;
$page_data = get_page( $page_id );
$content = $page_data->post_content;
$title = $page_data->post_title;
echo $page_data->post_content;
?>
then with (theorically) I put the excerpt on the home page, but nothing,
<?php
$page_id = 424;
$page_data = get_page( $page_id );
$content = $page_data->post_content;
$title = $page_data->post_title;
$excerpt = $page_data->post_excerpt;
echo $page_data->post_excerpt;
?>
where is the mistake?the function is in the codex so it should go :(
kikko088