/**
 * 后台底部添加文字
 * 字符转换地址:http://tool.chinaz.com/tools/unicode.aspx
 */
function custom_admin_footer(){
    echo 'Technical Support caiqi.run ';
}
add_filter('admin_footer_text', 'custom_admin_footer');