WP限制评论字数的方法
在主题functions.php文件适当位置加入以下代码: /* 设定评论字数限制开始 */ function set_comments_length($commentdata) { $minCommentlength = 5; //最少字数限制 $maxCommentlength = 1000...
CentOS7添加或删除用户和用户组
需在root用户下使用 1、新建用户 adduser testuser //新建testuser 用户 passwd testuser //给testuser 用户设置密码 2、建工作组 groupadd testgroup //新建test工作组 3、...