Skip to content

Instantly share code, notes, and snippets.

@marciomassari
Last active July 8, 2017 02:27
Show Gist options
  • Save marciomassari/bcb38a89bb797dd3f9f7 to your computer and use it in GitHub Desktop.
Save marciomassari/bcb38a89bb797dd3f9f7 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