Skip to content

Instantly share code, notes, and snippets.

@pigmentGit
Created November 27, 2014 07:52
Show Gist options
  • Save pigmentGit/a6ab9818e2b218e0721c to your computer and use it in GitHub Desktop.
Save pigmentGit/a6ab9818e2b218e0721c to your computer and use it in GitHub Desktop.
Styra excerpt unikt för varje gång
//Styra längd på excerpt
function get_excerpt($count){
$permalink = get_permalink($post->ID);
$excerpt = get_the_content();
$excerpt = strip_tags($excerpt);
$excerpt = substr($excerpt, 0, $count);
$excerpt = $excerpt.'...';
return $excerpt;
}
<?php echo get_excerpt(90); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment