Skip to content

Instantly share code, notes, and snippets.

@mindpalette
Last active March 19, 2020 13:56
Show Gist options
  • Save mindpalette/22b9d536bab6055e4a3871e5c3b0720f to your computer and use it in GitHub Desktop.
Save mindpalette/22b9d536bab6055e4a3871e5c3b0720f 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 );
}
@alstr
Copy link

alstr commented Mar 19, 2020

Very helpful, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment