Hello
I would like to change my blog formatting so that the following appears (i.e. header, 2 lines of text and a ‘read more’ link. I would also like to make the blog header size double what it currently is. Are you able to assist?
Thanks, fionalea
_____________________
ABOUT
Find out about our organization, mission, our methods, and the results of our decades of advocacy.
Learn More →
Hey fionalea,
Please edit your blog posts element and choose to diplay blog grid and then add following code to functions.php file in Appearance > Editor to change excerpt length
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}
Best regards,
Yigit