Skip to content

Instantly share code, notes, and snippets.

@aobasar
Created July 25, 2015 05:02
Show Gist options
  • Save aobasar/91df6ec6d1fb475953bf to your computer and use it in GitHub Desktop.
Save aobasar/91df6ec6d1fb475953bf to your computer and use it in GitHub Desktop.
double space remover snippet for wp
function remove_spaces($the_content) {
return preg_replace( '/[\p{Z}\s]{2,}/u', ' ', $the_content );
}
add_filter('the_content', 'remove_spaces');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment