Quote:
Originally Posted by SirAdrian
You're looking for fetch_trimmed_title
PHP Code:
/**
* Trims a string to the specified length while keeping whole words
*
* @param string String to be trimmed
* @param integer Number of characters to aim for in the trimmed string
*
* @return string
*/
function fetch_trimmed_title($title, $chars = -1)
|
Great ! Thank you very much.