答案 0 :(得分:-1)
感谢您在StackOverflow上发帖。尝试创建自定义wordpress页面。像这样......
<?php
include('/wp_blog_header.php'); //change this to reflect the location of your wp_blog_header.php
get_header();
echo "Your CharSet is: ".bloginfo('charset');
get_footer();
?>
这将告诉您wordpress设置设置为什么wordpress。如果不是UTF-8更改它以反映它(它与每种语言最兼容)。
或者,您也可以将此行添加到wp-config.php
define('DB_CHARSET', 'utf8'); // force utf8
define('DB_COLLATE', 'utf8_general_ci'); // force collation
如果我提供了最佳解决方案,请将此标记为您问题的答案:)再次感谢发布。