Hi :)
How can I make the text in the article slider posts longer? I need to display at least 200wrds for each post.
Thank you in advance for your quickest reply.
Andrea
Hi Gurify!
Please add following code to Functions.php file in Appearance > Editor
add_filter( 'avf_aviaccordion_excerpt_length', 'slider_excerpt_length');
function slider_excerpt_length() {
$excerpt = 200;
return $excerpt;
}
Best regards,
Yigit
Great Thanks,
What about the Magazine articles excerpts?
Thank you in advance for your quickest reply
Andrea
Hey!
Magazine element doesn’t show excerpts by default. How did you add the excerpts? You can’t control the excerpt size via filter. You may need to manually control the summary on the Excerpt meta box.
Cheers!
Ismael
I would like to increase the number of chars in the excerpt as well. I added the code above to the functions.php. Nothing changed.
Any ideas?