Hi Guys, is there a css code to reduce the excert length displayed on the blog page. I have created a page called Blog and inserted the Blog Posts in the builder, all works fine but ideally would like less excert, any ideas?
Thanks in advance… :-)
Hey stephenturner!
Please add following code to Functions.php file in Appearance > Editor and change it as needed
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 50;
return $length;
}
Cheers!
Yigit
thanks for the quick response… :-)
please close this question as answered, thanks again!