Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pagelab/939671c131079b406be5b3ca15c266b7 to your computer and use it in GitHub Desktop.
Save pagelab/939671c131079b406be5b3ca15c266b7 to your computer and use it in GitHub Desktop.
WordPress Filter - Trim Excerpt Whitespace
<?php
// trim excerpt whitespace
if ( !function_exists( 'mp_trim_excerpt_whitespace' ) ) {
function mp_trim_excerpt_whitespace( $excerpt ) {
return trim( $excerpt );
}
add_filter( 'get_the_excerpt', 'mp_trim_excerpt_whitespace', 1 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment