3.01 functions.php
add_action('wp_dashboard_setup', 'tmn_custom_dashboard_widgets');
function tmn_custom_dashboard_widgets() {
global $wp_meta_boxes;
wp_add_dashboard_widget('custom_help_widget', '解らないことがある時には', 'tmn_custom_dashboard_help');
}
function tmn_custom_dashboard_help() {
echo '<p>ご不明な点がございましたら、以下の連絡先までメールにて問い合わせいただけますようお願い申し上げます<a href="mailto:yourusername@gmail.com">here</a>. For WordPress Tutorials visit: <a href="http://www.tenman.info" target="_blank">初心者用FAQ</a></p>';
}