Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #582230

    Hi Guys,

    Is there a way to display the full post content in a masonry grid, instead of only the excerpt?

    Cheers,
    MediaX

    #582249

    Hey MediaX

    Please add following code to Functions.php file in Appearance > Editor

    add_filter( 'avf_masonry_excerpt_length', 'masonry_excerpt_length');
    function masonry_excerpt_length() {
    $excerpt = 5000;
    return $excerpt;
    }

    Cheers!
    Yigit

    #582422

    Thanks Yigit,

    That does work, to add the whole post into the excerpt, but unfortunately I loose all the styling, links etc in the post. I have opted to use another plugin to do the job now.

    Much regard,
    MediaX

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Masonry Grid | How to display full post content instead of exerpt’ is closed to new replies.