Skip to content

Instantly share code, notes, and snippets.

@TheHeat
Created June 9, 2016 12:24
Show Gist options
  • Save TheHeat/8618012dbd2318572504cd631612890a to your computer and use it in GitHub Desktop.
Save TheHeat/8618012dbd2318572504cd631612890a to your computer and use it in GitHub Desktop.
Convert text to usable excerpts outside the loop
<?php
// Cleans up and shortens text
// for creating excerpt when custom excerpts aren't available
// Wrapper around wp_trim_words with added shortcode removal
function proper_make_excerpt($content, $count = 50, $more = '&hellip;'){
// remove shortcodes first so we don't include them in our count
$content = strip_shortcodes( $content );
// trim to taste
$content = wp_trim_words( $content, $count, $more );
return $content;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment