Unfortunately below link does not work.
Drag on bookmarks toolbar
| // Add a new widget to the dashboard using a custom function | |
| function wpmudev_add_dashboard_widgets() { | |
| wp_add_dashboard_widget( | |
| 'wpmudev_dashboard_widget', // Widget slug | |
| 'My Custom Dashboard Widget', // Widget title | |
| 'wpmudev_new_dashboard_widget_function' // Function name to display the widget | |
| ); | |
| } | |
| // Register the new dashboard widget with the 'wp_dashboard_setup' action | |
| add_action( 'wp_dashboard_setup', 'wpmudev_add_dashboard_widgets' ); |
Unfortunately below link does not work.
Drag on bookmarks toolbar