Display snippets of pages on homepage
-
Hi Folks,
I’m trying to display snippets of pages on my homepage using the code below, but it doesnt display anything, can anyone please help?
function robins_get_the_excerpt($post_id) { global $post; $save_post = $post; $post = get_post($post_id); $output = get_the_excerpt(); $post = $save_post; return $output; } <?php echo robins_get_the_excerpt('14'); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Display snippets of pages on homepage’ is closed to new replies.