Add Custom Widgets In Wordpress Dashboard

Add the following code in functions.php




Output:



Change Footer Text on the wordpress dashboard

Add the following code to functions.php file to customize the footer text on the WordPress dashboard.

add_filter('admin_footer_text', 'remove_footer_admin');
function remove_footer_admin () {
       echo "Your own text here";
}


Output: