how to show focus in wp_editor of metabox
-
I added tinyMCE editor via wp_editor() to post metabox.
I want the focus inside the editor to be maintained when i switch between the visaul and text tab. (same as post editor)For now, when I drag a specific sentence from the visual tab and move to the text tab, the focus disappears.
If anyone knows a solution please let me know.
I am using wp version 4.9.20.
Here is my wp_editor() usage.$meta_key = '_my_meta_key'; $meta_value = get_post_meta($post->ID, $meta_key, true); $settings = array( 'textarea_name' => $meta_key, 'media_buttons' => false, ); wp_editor($meta_value, 'my_custom_editor', $settings);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘how to show focus in wp_editor of metabox’ is closed to new replies.