Skip to content

Instantly share code, notes, and snippets.

@tacensi
Created February 12, 2015 17:01
Show Gist options
  • Save tacensi/1abfd3dab659e37bec20 to your computer and use it in GitHub Desktop.
Save tacensi/1abfd3dab659e37bec20 to your computer and use it in GitHub Desktop.
Get a post excerpt by id
// get excerpt by id
function mg_get_the_excerpt($post_id) {
global $post;
$save_post = $post;
$post = get_post($post_id);
$output = get_the_excerpt();
$post = $save_post;
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment