No.78
2022年6月5日(日)16:04:25 593文字 WEB,WordPress
« No.77 / No.79 »
初期表示に戻る
■全文検索:
複合検索窓に切り替える
■複合検索:
■日付一覧:
■カレンダー:
■カテゴリ:
■ハッシュタグ:
■日付検索:
/* 検索結果で検索文字をハイライトする
---------------------------------------------------------- */
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