Skip to content
WJunction - Webmaster Forum

Highlight searched text plugin

Status
Not open for further replies.
I was just wondering if there is a plugin which marks or highlight the text i searched for.

For example when i search for a ''wjunction'' @ blog.
I get whole post which could look like this:

You searched for wjcuntion - showing results

TOPIC TITLE
google
facebook
wjunction
So basicly i get the whole post.
Is it possible for doing like this or something so i can see where the search word is in the post.

You searched for wjcuntion - showing results
TOPIC TITLE
google
facebook
wjunction
 

2 comments

1st link:
Red coloured text, what do they mean by that?

First open your search.php and look for the following code:
Code:
1<?php the_title(); ?>


Replace the above code with:
Code:
1<?php echo $title; ?>


Make sure that you paste this line above the title code:
Code:
1<?php $title = get_the_title(); $keys= explode(" ",$s); $title = preg_replace('/('.implode('|', $keys) .')/iu', '<strong class="search-excerpt">\0</strong>', $title); ?>


Now open your CSS file and add the styling for the class search-excerpt, and it will highlight the term. Currently the code is making the search terms bold.
 
Status
Not open for further replies.

About the author

R
Banned · Joined
147
Messages
13
Reactions
18
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom