admin管理员组文章数量:1420907
How can I limit character length of user description field? I want to restrict users within 250 characters. I've added the code to solve this-
add_filter( 'pre_user_description', 'limit_user_bio_character_length');
function limit_user_bio_character_length() {
$current_user = wp_get_current_user(); get_currentuserinfo();
$description = get_user_meta($current_user->ID, 'description', true);
if ( strlen(( $description )) > 250 ) {
update_user_meta($current_user->ID, 'description', substr($description, 0, 250));
}
}
This code not working, after update user bio disappears!
本文标签: Limit user description length in characters
版权声明:本文标题:Limit user description length in characters 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745345232a2654447.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论