Skip to content

Instantly share code, notes, and snippets.

@andyknapp
Created June 20, 2013 02:01
Show Gist options
  • Save andyknapp/5819771 to your computer and use it in GitHub Desktop.
Save andyknapp/5819771 to your computer and use it in GitHub Desktop.
Add a widget to the WP admin dashboard
function ak_dashboard_widget() { ?>
<p>stuff</p>
<?php
}
function ak_add_dashboard_widget() {
wp_add_dashboard_widget('wp_dashboard_widget', 'Welcome to This Site', 'ak_dashboard_widget');
}
add_action('wp_dashboard_setup', 'ak_add_dashboard_widget');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment