hyphenation not working in Gutenberg editor
With the ‘new’ Gutenberg editor the previously working solution using the tiny_mce_before_init hook does not work anymore, but there is the possibility to define a new shortcode in your theme / plugin as a workaround. Solution for Gutenberg add_shortcode(‘shy’, ‘my_shy_shortcode’); function my_shy_shortcode($atts) { return ‘­’; } This simply adds a new shortcode to WordPress with … Read more