Insert a span inside widget title to give a different color to the second word
/** * Wraps the first half of the provided string inside a span with the class lol_class. * * @param string $title The string. * @return string The modified string. */ function wpsa_82312_widget_title($title) { // Cut the title into two halves. $halves = explode(‘ ‘, $title, 2); // Throw first word inside a span. $title=”<span … Read more