Cita:
y para obtener solo <?php echo ShortenText(get_the_title()); ?>function ShortenText($text)
{
$chars_limit = 100;
$chars_text = strlen($text);
$text = $text." ";
$text = substr($text,0,$chars_limit);
$text = substr($text,0,strrpos($text,' '));
if ($chars_text > $chars_limit)
{
$text = $text."...";
}
return $text;
}
{
$chars_limit = 100;
$chars_text = strlen($text);
$text = $text." ";
$text = substr($text,0,$chars_limit);
$text = substr($text,0,strrpos($text,' '));
if ($chars_text > $chars_limit)
{
$text = $text."...";
}
return $text;
}
ahora quiro obtener la otra parte del texto. de la letra 100 hasta el final.
ayudenme por favor, GRACIAS DE ANTEMANO!