Tag Archives: search

Migrating From Blogger To WordPress: Keeping Search Results

by Jerome

September 25 th

Continue Reading

How To Highlight Search Terms With jQuery

How To Highlight Search Terms With jQuery

by Jerome

August 25 th

Make a better search experience for the user by highlighting any search terms with jQuery.
Simply open your functions.php file and copy and paste the code below:

function hls_set_query() {
$query = attribute_escape(get_search_query());
 
if(strlen($query) > 0){
echo ‘
<script type="text/javascript"><!–mce:0–></script>
‘;
}
}
 
function [...]

Continue Reading