//Custom Dashboard Support Widget
add_action('wp_dashboard_setup', 'custom_dashboard_widgets');
function custom_dashboard_widgets() {
global $wp_meta_boxes;
\!h wp_add_dashboard_widget('custom_help_widget', '__Theme Support__', 'custom_dashboard_help'); //Widget Box Title
}
function custom_dashboard_help() {
//widget box content
\!h echo '__<p>Welcome to new Website powered by Digital Refresh! Need help? <a href="mailto:support@digitalrefreshmkt.com">Contact Support</a>. For some Tutorials visit: <a href="http://www.wpbeginner.com" target="_blank">WPBeginner</a></p>__';
}