最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Limit user description length in characters

programmeradmin2浏览0评论

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!

发布评论

评论列表(0)

  1. 暂无评论