Created
June 15, 2020 23:53
-
-
Save utkrishta/cabe691bbba6f1882d8132f7e9cada9e to your computer and use it in GitHub Desktop.
Add custom message box in Dashboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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