Skip to content

Instantly share code, notes, and snippets.

@webhasan
Created January 26, 2014 04:47
Show Gist options
  • Save webhasan/8628544 to your computer and use it in GitHub Desktop.
Save webhasan/8628544 to your computer and use it in GitHub Desktop.
wp post excerpt
/**
* Function for post excerpt
*/
function excerpt($num) {
$limit = $num+1;
$excerpt = explode(' ', get_the_excerpt(), $limit);
array_pop($excerpt);
$excerpt = implode(" ",$excerpt)." <a href='" .get_permalink($post->ID) ." ' class='".readmore."'>Read More &rsaquo;&rsaquo;</a>";
echo $excerpt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment