RE13B.net

トミカのレビューや新車の予約販売情報からお仕事関連まで。私生活のいろいろなできごとを書き綴っています

WordPress

Search Everythingの検索結果 文字化け対策

環境

WordPress3.9.1
Search Everything:8.1.1

使用環境は上記のとおり。これも忘備録として。

対策方法

search-everything.php

				if ( $highlight_color != '' )
					$postcontent = preg_replace(
						'"(?<!\<)(?<!\w)(\pL*'.$term.'\pL*)(?!\w|[^<>]*>)"iu'
						, '<span class="search-everything-highlight-color" style="background-color:'.$highlight_color.'">$1</span>'
						, $postcontent
					);
				else
					$postcontent = preg_replace(
						'"(?<!\<)(?<!\w)(\pL*'.$term.'\pL*)(?!\w|[^<>]*>)"iu'
						, '<span class="search-everything-highlight" style="'.$highlight_style.'">$1</span>'
						, $postcontent
					);

 '"(?<!\<)(?<!\w)(\pL*'.$term.'\pL*)(?!\w|[^<>]*>)"i'

'"(?<!\<)(?<!\w)(\pL*'.$term.'\pL*)(?!\w|[^<>]*>)"iu'
に変更するだけです。2か所ある。

-WordPress