If contents in text fields contain simplified chinese characters(gb2312), blog page won't display it properly because it changes all these characters into escaped characters, that is, '最新' is changed into
ÇáËÉ
.
So I change the convert_chars function in _functions.php so it won't escape chinese characters. Then it works fine.
The modification is, change the next line in convert_chars function:
if (locale_charset(false) != 'utf-8')
to this:
if (locale_charset(false) != 'utf-8' && locale_charset(false) != 'gb2312')
Hi, I did what you told. the problem is when use Browse/Edit, all the chinese charaters become 留言。
so it cannnot be edited.
do you know how to solve this problem?
Thank you.