Te dejo un compilado de snippets que sirven para tal fin
http://www.summarg.com/2012/limitar-...-en-wordpress/
Yo todavía uso el de "La Bitácora"
Código PHP:
Ver original/*
Original Plugin URI: http://labitacora.net/comunBlog/limit-post.phps
Usage: the_content_limit($max_charaters, $more_link)
*/
function the_content_limit($max_char, $more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {
$content = get_the_content($more_link_text, $stripteaser, $more_file);
$content = apply_filters('the_content', $content);
echo "<p>";
echo $content;
echo "...";
echo " <a href='";
the_permalink();
echo "'>".$more_link_text."</a>";
echo "</p>";
}
else if ((strlen($content)>$max_char) && ($espacio = strpos($content, " ", $max_char ))) { $content = substr($content, 0, $espacio); $content = $content;
echo "<p>";
echo $content;
echo "...";
echo " <a href='";
the_permalink();
echo "'>Leer nota</a>";
echo "</p>";
}
else {
echo "<p>";
echo $content;
echo "...";
echo " <a href='";
the_permalink();
echo "'>Leer nota</a>";
echo "</p>";
}
}
y su uso:
Saludos!