Guest User

Untitled

a guest
Jul 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // expected function get_the_excerpt($post_id) is deprecated
  2. function get_post_excerpt_by_id($id) {
  3. global $post;
  4. $post = get_post($id);
  5. setup_postdata($post);
  6. $the_excerpt = get_the_excerpt();
  7. wp_reset_postdata();
  8. return $the_excerpt;
  9. }
Add Comment
Please, Sign In to add comment