I'd like your help to fix something that's driving me crazy. In my front-page.php I have modified my excerpts length with this code:
//* Modify the length of post excerpts
add_filter( 'excerpt_length', 'rtny_excerpt_length' );
function rtny_excerpt_length( $length ) {
return 60; // pull first 60 words
}
The problem is that if I limit the length with words (as some words are longer than other), the result in the web I'm creating is not looking so well this is how it looks like .
I think if I could limit the number of characters or lines instead of words I could get a better look with all meta aligned. But I'm really new in coding so I pleaaase really need help. I hope my English is not so bad and :)
Thank you in advance!