Skip to content

Instantly share code, notes, and snippets.

@johanoloflindberg
Forked from marciomassari/functions.php
Created July 8, 2017 02:27
Show Gist options
  • Save johanoloflindberg/2194e708d6752659e1bfda71e44cc347 to your computer and use it in GitHub Desktop.
Save johanoloflindberg/2194e708d6752659e1bfda71e44cc347 to your computer and use it in GitHub Desktop.
Welcome Message Box - WordPress
/*welcome*/
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', 'Início', 'custom_dashboard_help');
}
function custom_dashboard_help() {
echo
'<p>
<h1>Bem-Vindo!</h1> <br>
Qualquer dúvida sobre as funcionalidades do Site entre em contato.
</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment