Tagged: masonry grid
Hi Guys,
Is there a way to display the full post content in a masonry grid, instead of only the excerpt?
Cheers,
MediaX
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
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