Skip to content

Instantly share code, notes, and snippets.

@utkrishta
Created June 15, 2020 23:53
Show Gist options
  • Save utkrishta/cabe691bbba6f1882d8132f7e9cada9e to your computer and use it in GitHub Desktop.
Save utkrishta/cabe691bbba6f1882d8132f7e9cada9e to your computer and use it in GitHub Desktop.
Add custom message box in Dashboard
<?php
//add custom message box in Dashboard
add_action('wp_dashboard_setup', 'custom_dashboard_widgets');
function custom_dashboard_widgets() {
wp_add_dashboard_widget('custom_dashboard_id', 'Custom Theme Support', 'custom_dashboard_message');
}
function custom_dashboard_message() {
echo '<p>Welcome to your Awesome WordPress Theme.</p>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment