国外商业主题corporate中,幻灯(SLIDER)图片中文描述乱码的解决办法:
打开:wp-content\themes\corporate\header-slider.php
查找:
<?php echo htmlentities($slide['desc']); ?>
更改为:
<?php echo htmlentities($slide['desc'], ENT_QUOTES, 'UTF-8'); ?>
主要用于个人操作备份,以备查阅,非IT男
国外商业主题corporate中,幻灯(SLIDER)图片中文描述乱码的解决办法:
打开:wp-content\themes\corporate\header-slider.php
查找:
<?php echo htmlentities($slide['desc']); ?>
更改为:
<?php echo htmlentities($slide['desc'], ENT_QUOTES, 'UTF-8'); ?>