Skip to content

Instantly share code, notes, and snippets.

@alpha1
Created November 19, 2015 16:29
Show Gist options
  • Save alpha1/cd6d205da1959f536523 to your computer and use it in GitHub Desktop.
Save alpha1/cd6d205da1959f536523 to your computer and use it in GitHub Desktop.
Allow Spaces in Wordpress TinyMCE
<?php
function allow_nbsp_in_tinymce( $mceInit ) {
$mceInit['entities'] = '160,nbsp,38,amp,60,lt,62,gt';
return $mceInit;
}
add_filter( 'tiny_mce_before_init', 'allow_nbsp_in_tinymce' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment