TinyMCE editor used in WordPress usually has two rows on its toolbar. But, the second row is hidden by default, and you need to click an icon on first toolbar row to open the second row.
If you want this second row to be open by default, here is a small piece of code to do that and it will affect every TinyMCE you have on your website:
function dev4press_tiny_mce_before_init($args) { $args['wordpress_adv_hidden'] = false; return $args; } add_filter('tiny_mce_before_init', 'dev4press_tiny_mce_before_init');
You can add this code in theme functions.php file.
Hi,
TinyMCE editor used in WordPress usually has “to” rows on its…
You probably would like to change that to two. It’s a costly punctuation typo I spotted and thought I should mention it out to you.
Thanks, fixed!