It has been though – have a look at this screenshot from a pre WP5 (WP4) installation: https://files.data.lancedev.net/wp/context-help.png
It’s not a plugin as I have it available on multiple sites – I tend not to use plugins as I prefer to code my own functionality.
But it seems with the new wordpress blocks/gutenberg they have removed the contextual help tab at the top. In fact I have just noticed that if I override the gutenberg editor with the legacy tinyMCE through using the following code, the contextual help shows up again.
function disable_gutenberg($is_enabled, $post_type){
return false;
}
add_filter('use_block_editor_for_post_type', 'disable_gutenberg', 10, 2);
-
This reply was modified 4 years, 5 months ago by lancedev.