post excerpt
-
i try to follow this wordpress wiki https://codex.www.ads-software.com/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
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘post excerpt’ is closed to new replies.