/*
 Theme Name:   UShop4All
 Description:  Developed by Ibrahim Shabbir
 Author:       Ibrahim Shabbir
 Author URI:   http://ibrahimshabbir.com
 Template:     by Ibrahim Shabbir
 Version:      1.0.1
 Text Domain:  Ibrahim Shabbir
 * Theme developed by Ibrahim Shabbir
 * For Heat Guard Assurance
*/


function add_custom_dashboard_widget() {
    wp_add_dashboard_widget(
        'custom_developer_info',         // Widget slug
        'Developer Information',         // Title
        'display_custom_developer_info'  // Function to display content
    );
}
function display_custom_developer_info() {
    echo 'Website developed by Ibrahim Shabbir. For any queries, contact ibrahim@ushop4all.com.';
}
add_action('wp_dashboard_setup', 'add_custom_dashboard_widget');
