I know how to show a piece(excerpt) of a post in my index, but I would like to know how to show a piece(excerpt) of a page in my index
I know how to show a piece(excerpt) of a post in my index, but I would like to know how to show a piece(excerpt) of a page in my index
Try it with this:
<?php
$specific_page = get_page($id=37);
setup_postdata($specific_page);
the_excerpt();
wp_reset_postdata();
?>
Change $id=37 to the Page ID you want to show an excerpt of.
it works, thanks buddy
No problem. Glad you got it resolved.
This topic has been closed to new replies.