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… Continue Reading
dashboard
Replacing default "Starter Pro" menu with your site name at Dashboard
There have a filter hook “starter_admin_menu” for admin menu. You’ll just drop the following code in your custom-starter/custom-functions.php file and see the magic. Snippet
1 2 3 4 5 |
//* Change Default Menu with Site Name add_filter( 'starter_admin_menu', 'gd_admin_menu' ); function gd_admin_menu( $menu ) { return __( 'Genesis Developer', 'starter' ); } |
After adding the following code I am getting this: