Tambien puedes usar esto
Código PHP:
Ver original// Esto va en el function.php
function titulo_corto($separador = '', $length) {
$mytitle = explode(' ', get_the_title
());
return $mytitle;
}
Y lo llamas en el loop asi:
Código PHP:
Ver original<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php echo titulo_corto('<br/>', 5); ?></a></h2>
<br> seria el separador y 5 la posicion donde debe ir el separador.