Remove Notifications from WordPress Dashboard


In this article, I'll cover a simple way to remove notifications, individually, from the admin area in WordPress

/*REMOVE NOTIFICATION IN DASHBOARD */
add_action('admin_head', 'my_custom_fonts');

function my_custom_fonts() {
echo '<style>

</style>';
}


First:
Copy the code above and past it into the Function.PHP file of your WordPress theme. 

Then:
Within the style area of the above code find the corresponding CSS for the notification you would like to remove and add display: none !important to remove the specific notification from the top of the dashboard area.

Did you find this article useful?