Removed first word in an excerpt

Solution:

Just do something simple like this:

function removeFirstWord($text)
{
    return substr($text, strpos($text, " ") + 1);
}

This simply returns everything after the first space. You can also add a trim function on there to ensure the first character isn’t a space.