wordpress很多主题目不支持中文名注册,实现这个也很简单,只要将下面的代码插入到functions.php即可实现!
- //支持中文名注册,来自肚兜
- function git_sanitize_user ($username, $raw_username, $strict) {
- $username = wp_strip_all_tags( $raw_username );
- $username = remove_accents( $username );
- $username = preg_replace( '|%([a-fA-F0-9][a-fA-F0-9])|', '', $username );
- $username = preg_replace( '/&.+?;/', '', $username ); // Kill entities
- if ($strict) {
- $username = preg_replace ('|[^a-z\p{Han}0-9 _.\-@]|iu', '', $username);
- }
- $username = trim( $username );
- $username = preg_replace( '|\s+|', ' ', $username );
- return $username;
- }
- add_filter ('sanitize_user', 'git_sanitize_user', 10, 3);
- // 评论添加@,来自:http://www.ludou.org/wordpress-comment-reply-add-at.html
- function git_comment_add_at( $comment_text, $comment = '') {
- if( $comment->comment_parent > 0) {
- $comment_text = '@<a href="#comment-' . $comment->comment_parent . '">'.get_comment_author( $comment->comment_parent ) . '</a> ' . $comment_text;
- }
- return $comment_text;
- }
- add_filter( 'comment_text' , 'git_comment_add_at', 20, 2);
1. 如有链接无法下载、失效或广告,请联系QQ:181289218 处理!
2. 本站的所有资源为购买、网络收集,或者用户投稿的资源,版权归原作者及网站所有!
3. 如若侵犯了您的权利,请及时联系站长删除!
4. 本站提供的资源,都不包含技术服务请大家谅解!
5. 此软件“仅限学习交流,不能用于商业用途”!
6. 如用于商业用途,请到官方购买正版软件,追究法律责任与“云墨SEO”站点无关!
2. 本站的所有资源为购买、网络收集,或者用户投稿的资源,版权归原作者及网站所有!
3. 如若侵犯了您的权利,请及时联系站长删除!
4. 本站提供的资源,都不包含技术服务请大家谅解!
5. 此软件“仅限学习交流,不能用于商业用途”!
6. 如用于商业用途,请到官方购买正版软件,追究法律责任与“云墨SEO”站点无关!
- 我的微信
- 这是我的微信扫一扫
- 站长技术资源群
- QQ群:431710796
评论