multilingual - How do I get both arabic and english text to show in a wordpress blog post? -


i trying make blog has both arabic , english primary languages. i'm using unicode (utf-8) character encoding when paste chunk of arabic text editor, comes out "?". shows fine in editor when first paste it, after clicking update, changes arabic text junk. can keep arabic text displaying correctly?

looks database charset problem. here few things can try:

easiest

check in settings > reading you've got encoding set utf-8.

easy

open wp-config.php , find line:

 define('db_charset', 'utf8'); 

change to:

 define('db_charset', ''); 

pita

convert database charset utf-8, explained in this article.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -