Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created April 28, 2022 18:01
Show Gist options
  • Save wpmu-authors/ad4a8229a35134a8ce2494c0dbd1f68b to your computer and use it in GitHub Desktop.
Save wpmu-authors/ad4a8229a35134a8ce2494c0dbd1f68b to your computer and use it in GitHub Desktop.
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 'Hello, I am Mr. Widget';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment