
09-11-2012, 02:02 PM
|
 |
Senior Member
|
|
Join Date: Jan 2010
Posts: 167
|
|
Well, but source code of your WP pages still shows UTF-4 charset:
Code:
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-4" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title></title>
It looks like your theme have this value hard-coded. If possible could you please check the following file in your WP installation:
<WP>/wp-content/themes/<YOUR-THEME-NAME>/header.php
There you should find the code similar to:
Code:
<meta charset="<?php bloginfo( 'charset' ); ?>" />
Please, let me know what is this code in your theme.
|