先日、プラグインにて使用している「wordpress popular posts」を、 3.0.1にバージョンアップしたら、記事内容部分に文字化けが、発生しました。
設定部分をいじっても改善しません。
ブログは、下記アドレスです。
「けんけんちくちく」建築情報
http://architectural-site.jp/
直す方法を御指示願います。
よろしくお願いします。
直接みれないから何が原因かを突き止めるのはちょっと大変そうね。
wordpress-popular-posts.phpの2496行目からの一部をコメントにして文字カウント固定にしてしまうのはどうかしら?
// truncate excerpt //if ( isset($instance['post-excerpt']['words']) && $instance['post-excerpt']['words'] ) { // by words // $words = explode(" ", $excerpt, $instance['post-excerpt']['length'] + 1); // if ( count($words) > $instance['post-excerpt']['length'] ) { // array_pop($words); // $excerpt = implode(" ", $words) . "..."; // } //} else { // by characters if ( strlen($excerpt) > $instance['post-excerpt']['length'] ) { $excerpt = mb_substr( $excerpt, 0, $instance['post-excerpt']['length'] ) . "..."; } //}
直接みれないから何が原因かを突き止めるのはちょっと大変そうね。
wordpress-popular-posts.phpの2496行目からの一部をコメントにして文字カウント固定にしてしまうのはどうかしら?
// truncate excerpt //if ( isset($instance['post-excerpt']['words']) && $instance['post-excerpt']['words'] ) { // by words // $words = explode(" ", $excerpt, $instance['post-excerpt']['length'] + 1); // if ( count($words) > $instance['post-excerpt']['length'] ) { // array_pop($words); // $excerpt = implode(" ", $words) . "..."; // } //} else { // by characters if ( strlen($excerpt) > $instance['post-excerpt']['length'] ) { $excerpt = mb_substr( $excerpt, 0, $instance['post-excerpt']['length'] ) . "..."; } //}
WordPress › フォーラム » wordpress popular posts 3.0.1が文字化けします。
phpのバージョン問題だったなんて大変ね。がんばって。
コメント、ありがとうございました。
WordPress › フォーラム » wordpress popular posts 3.0.1が文字化けします。
2014/06/23 14:19:54phpのバージョン問題だったなんて大変ね。がんばって。
コメント、ありがとうございました。
2014/06/23 15:06:14