Created
November 19, 2015 16:29
-
-
Save alpha1/cd6d205da1959f536523 to your computer and use it in GitHub Desktop.
Allow Spaces in Wordpress TinyMCE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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