Forked from digitalinkwell/dashboard-instruction-widget.php
Last active
August 27, 2015 16:08
-
-
Save seafarer/a27febeec3674fac8b83 to your computer and use it in GitHub Desktop.
dashboard-instruction-widget
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
add_action( 'wp_dashboard_setup', 'register_my_dashboard_widget' ); | |
function register_my_dashboard_widget() { | |
wp_add_dashboard_widget( | |
'my_dashboard_widget', | |
'My Dashboard Widget', | |
'my_dashboard_widget_display' | |
); | |
} | |
function my_dashboard_widget_display() { | |
echo 'Put your instructions here'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment