Hello!
How can I change the excerpt lenght at Feature Image Slider?
Thanks!
Andy
Hey andyqueanda!
Please add following code to Functions.php file of your child theme in Appearance > Editor and adjust the value as needed
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}
Regards,
Yigit
Sorry, but I pasted it at the end of the document ‘functions.php’ but it doesnt work :(
Am I doing something wrong?