-
-
Save johanoloflindberg/2194e708d6752659e1bfda71e44cc347 to your computer and use it in GitHub Desktop.
Welcome Message Box - WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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