Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #400361

    Hi,

    I would like my blog post excerpts to be just the first sentence of my post and include an image.

    How can I achieve this in Enfold? My image does not show up.

    Thanks

    #400854

    Hi nicsans!

    Please add following code to Functions.php file in Appearance > Editor and adjust 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;
    }

    and can you post the link to your blog page?

    Cheers!
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.