Skip to content

Instantly share code, notes, and snippets.

@digitalinkwell
Created August 11, 2015 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save digitalinkwell/54a56242a0c42f1687dc to your computer and use it in GitHub Desktop.
Save digitalinkwell/54a56242a0c42f1687dc to your computer and use it in GitHub Desktop.
dashboard-instruction-widget
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