Skip to content

Instantly share code, notes, and snippets.

@wpscholar
Created February 17, 2014 20:46
Show Gist options
  • Save wpscholar/9058757 to your computer and use it in GitHub Desktop.
Save wpscholar/9058757 to your computer and use it in GitHub Desktop.
Get the excerpt for a WP_Post by post ID.
<?php
/**
* Get the excerpt for a WP_Post by post ID.
*
* @param int $post_id
*/
function get_excerpt_by_id( $post_id = 0 ) {
global $post;
$save_post = $post;
$post = get_post( $post_id );
setup_postdata( $post );
$excerpt = get_the_excerpt();
$post = $save_post;
wp_reset_postdata( $post );
return $excerpt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment