Skip to content

Instantly share code, notes, and snippets.

@mattboon
Created June 14, 2012 08:49
Show Gist options
  • Save mattboon/2929125 to your computer and use it in GitHub Desktop.
Save mattboon/2929125 to your computer and use it in GitHub Desktop.
WordPress - Query / test the_excerpt
<?php
function my_query_excerpt($page) {
global $post;
$save_post = $post;
$post = get_post($page);
$output = '<p>' . get_the_excerpt() . '</p>';
$post = $save_post;
return $output;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment