Answer the question
In order to leave comments, you need to log in
How to make Wordpress in a category display news announcements (zag, picture and a couple of lines) with the inscription read more, and not the whole news?
How to make Wordpress in a category display news announcements (zag, picture and a couple of lines) with the inscription "read more", and not the whole news?
Answer the question
In order to leave comments, you need to log in
you need wp function which is called custom_excerpt_length
/* Change Excerpt length */
function custom_excerpt_length( $length ) {
return 30;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );
wp_trim_words( get_the_content(), $num_words = 20, $more = null )
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question