G
G
Gennady Dorokhin2016-03-26 18:45:45
css
Gennady Dorokhin, 2016-03-26 18:45:45

How to limit title/preview text size in WP?

Hello.
Site goo.gl/WYVD4I
It is necessary to limit the length of the title to 2 lines, and the preview of the text to 3 lines.
Tell me how to do it

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Ninja Mate, 2016-03-27
@victorzadorozhnyy

When you exit, you need to do this. not measured in lines, only in words

/* Change Excerpt length */
function custom_excerpt_length( $length ) {
return 30;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question