Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Problem in displaying utf8 characthers from wp_usermeta

@detective

Member

I have the same problem, I solved it by filtering the display names:

add_filter( 'get_user_display_name', 'rk_display_name' );
function rk_display_name($name, $ID = 0) {
if ( !seems_utf8( $name ) )
return utf8_encode( $name );
return $name;
}

Put this inside a plugin.

Skip to toolbar