Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #507527

    Hi,
    I’ve seen a lot of posts on this topic, and have spend hours trying everything, and nothing I do changes the excerpt length in the grid layout on the home page. Any ideas? My client needs the excerpt to be quite a bit longer.

    Site: http://www.avenstar.com/

    Thanks!

    #507737

    Hi Taryn!

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

    Regards,
    Yigit

    #508752

    Yay! Thank you soooo much!

    #508782

    Hey!

    Glad you got it shorted! We will be happy to assist with anything else you might need!

    Regards,
    Basilis

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Excerpt length – blog grid layout’ is closed to new replies.