WP 4.9.8 is displaying the Gutenberg panel on your dashboard. Gutenberg is the codename for the new WordPress editor which will be releasing in WP 5.0. Right now this welcome panel is creating the confusion to my clients. So I am completely removing it from the Dashboard. Therefore my client will not see it. I added this small PHP snippets in my theme’s functions.php file
1 2 3 4 |
if( function_exists( 'wp_try_gutenberg_panel' ) ) { // Disable gutenberg welcome panel remove_action('try_gutenberg_panel', 'wp_try_gutenberg_panel'); } |
Avril says
This code seems to be outdated for WordPress 5.6
Or am I doing something wrong?