Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nutsandbolts/7353434 to your computer and use it in GitHub Desktop.
Save nutsandbolts/7353434 to your computer and use it in GitHub Desktop.
Add a custom widget to the WP dashboard with any content you want to include.
// Add custom dashboard widget
add_action('wp_dashboard_setup', 'nabm_dashboard_widget');
function nabm_dashboard_widget() {
global $wp_meta_boxes;
wp_add_dashboard_widget('custom_help_widget', 'ADD WIDGET TITLE HERE', 'custom_dashboard_help');
}
function custom_dashboard_help() {
echo '<p>PLACE YOUR WIDGET CONTENT HERE, INCLUDING HTML.</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment