quieres limitar el titlo de cada entrada ? si es eso, puedes utilizar estos codigos
PHP:
<a rel="nofollow" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_titlesmall('', '...', true, '25') ?></a>
y luego en el archivo funtion.php de tu theme pones estos codigos
PHP:
<?php function the_titlesmall($before = '', $after = '', $echo = true, $length = false) { $title = get_the_title();
if ( $length && is_numeric($length) ) {
$title = substr( $title, 0, $length );
}
if ( strlen($title)> 0 ) {
$title = apply_filters('the_titlesmall', $before . $title . $after, $before, $after);
if ( $echo )
echo $title;
else
return $title;
}
}
?>
listo, con estos codigos limitaras el tamaño de las caracteristicas de cada titulo.
NOTA:
en estas lineas cambia el numero 25 por la cantidad de letra que dees que salga el titulo
PHP:
<?php the_titlesmall('', '...', true, '25') ?>