Guest User

Untitled

a guest
Jan 18th, 2018
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_action('wp_dashboard_setup', 'dashboard_widgets');
  2.  
  3. function dashboard_widgets() {
  4. global $wp_meta_boxes;
  5.  
  6. wp_add_dashboard_widget('custom_help_widget', 'Theme Support', 'dashboard_help');
  7. }
  8. function dashboard_help() {
  9. echo '<p>Welcome! Need help? <a href="mailto:name@gmail.com">here</a></p>';
  10. }
Add Comment
Please, Sign In to add comment