Tagged: excerpt
Hello, in the blog post grid I’d like to change the excerpt lenght. Can you please direct me in the right direction, which PHP file I have to edit?
Thanks!
Hey originaltours!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}
Best regards,
Yigit
Thanks, that fixed it, can be closed.