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

    Hello!

    I’m trying to limit (or rather extend) the length of the excerpt in the post slider to the full first paragraph.
    Is that possible?

    I can alter the length by character using this code:

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }

    But can’t figure out if its possible to just limit it to a full paragraph.

    Thanks!

    #300319

    Hey storyboardsolutions!

    No, unfortunately you can’t limit to the full paragraph. You can only change the number of characters which also affects the excerpt length.

    Regards,
    Peter

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