BlackHat SEO, ¿hacer trampa o tener recursos…?
24 febrero, 2016
$content = get_the_content();
$content = apply_filters('the_content', $content );
$word_limit =30;
$words = explode(' ', $content);
echo implode(' ', array_slice($words, 0, $word_limit)) . " ...";
?>