Add to functions.php file, and you can add your own welcoming information or images.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
add_action('wp_dashboard_setup', 'my_add_dashboard_widgets' ); function my_add_dashboard_widgets() { wp_add_dashboard_widget('wp_dashboard_widget', 'Theme Details', 'my_theme_info'); } function my_theme_info() { echo "<ul> <li><strong>Developed By:</strong> Anyone you want</li> <li><strong>Website:</strong> <a href='https://codehaven.co.uk'>www.codehaven.co.uk</a></li> </ul>"; } |