2022年6月5日(日)12:38:57
635文字
WEB,WordPress
2022年6月5日(日)12:23:39
123文字
WEB,PCソフト&アプリ
2022年6月5日(日)11:41:58
178文字
WEB,WordPress
2022年6月5日(日)10:04:06
177文字
日記,買い物
2022年6月5日(日)09:01:27
158文字
日記,書籍・古本・古書
/* 検索結果で検索文字をハイライトする
---------------------------------------------------------- */
function highlight_search_results($content) {
if (!is_admin() && is_search() && is_main_query()) {
$keys = implode('|', explode(' ', get_search_query()));
$content = preg_replace('/'. $keys .'/iu', '<mark>$0</mark>', $content);
}
return $content;
}
add_filter('the_title', 'highlight_search_results');
add_filter('the_excerpt', 'highlight_search_results');
参考:[WordPress] 検索結果で検索文字をハイライトする方法
https://b.0218.jp/20170908225013.html