Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 8, 2021 13:26
Show Gist options
  • Select an option

  • Save wpmu-authors/6de7a302cf7a894e75d0c618d9754e1e to your computer and use it in GitHub Desktop.

Select an option

Save wpmu-authors/6de7a302cf7a894e75d0c618d9754e1e to your computer and use it in GitHub Desktop.

Revisions

  1. wpmu-authors created this gist Feb 8, 2021.
    13 changes: 13 additions & 0 deletions skeleton.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    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';
    }