M
M
Maria2016-04-02 18:24:12
WordPress
Maria, 2016-04-02 18:24:12

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

1 answer(s)
N
Ninja Mate, 2016-04-02
@missbells

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 );

or just cut
wp_trim_words( get_the_content(), $num_words = 20, $more = null )

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question