WordPress GStyle Theme

I like Google’s services because they are simple and easy to use. I like WordPress, too. So I’ve made this theme to combine them for private use and named it GStyle :D

Read the rest of this entry »

PHP: How To Highlight Search Without Affecting HTML Tags

This class allows you to highlight keywords in the search results without affecting HTML tags. It can exactly highlight the string in double quotes of the keyword. For example:

$highlightedString = Fete_Util_Text_Highlighter::createInstance('<b>', '</b>')
->highlight('PHP rules the world', '"PHP rules" world'); // prints <b>PHP rules</b> the <b>world</b>

Read the rest of this entry »