diff --git a/functions.php b/functions.php index c570dcc8..55506058 100644 --- a/functions.php +++ b/functions.php @@ -50,6 +50,7 @@ function initials($str) { $ret = ''; foreach (explode(' ', $str) as $word) $ret .= strtoupper($word[0]); + $ret = substr($ret,0, 2); return $ret; } }