Skip to content

Instantly share code, notes, and snippets.

@SitesByYogi
Created July 24, 2022 00:35
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 SitesByYogi/de4b9cf31cd996faf530bb9d04da5214 to your computer and use it in GitHub Desktop.
Save SitesByYogi/de4b9cf31cd996faf530bb9d04da5214 to your computer and use it in GitHub Desktop.
Add a custom dashboard widget to WordPress admin
<?php
add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
function my_custom_dashboard_widgets() {
global $wp_meta_boxes;
wp_add_dashboard_widget('custom_help_widget', 'Theme Support', 'custom_dashboard_help');
}
function custom_dashboard_help() {
echo '<p>Welcome to Custom Blog Theme! Need help? Contact the developer <a href="mailto:yourusername@gmail.com">here</a>. For WordPress Tutorials visit: <a href="https://www.wpbeginner.com" target="_blank">WPBeginner</a></p>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment