function custom_fields_tip(){
$h3 = "欢迎使用自定义域";
$html=<<
$h3
如果你正在发布或编辑一篇受密码保护的文章,建议您添加一个名称为'password_hint'的自定义域.用来提示访客.
使用'head_JS_CSS'可以添加css、js到头部.
使用'image_thumb'可以给文章添加缩略图
END;
echo $html;
}
add_action('submitpost_box', 'custom_fields_tip');
add_action('submitpage_box', 'custom_fields_tip');......

