Advertisement
cybershot

Add custom wordpress dashboard widget

Aug 13th, 2011
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. function example_dashboard_widget_function() {
  2.  // Display whatever it is you want to show
  3.     echo "Hello World, I'm a great Dashboard Widget"; }
  4. // Create the function use in the action hook
  5. function example_add_dashboard_widgets() {
  6.     wp_add_dashboard_widget('example_dashboard_widget', 'Example Dashboard Widget', 'example_dashboard_widget_function'); }
  7. // Hoook into the 'wp_dashboard_setup' action to register our other functions
  8. add_action('wp_dashboard_setup', 'example_add_dashboard_widgets' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement