Hi there!
How can I change my blog homepage so each post only shows an excerpt? At the end of the excerpt, I’d like a new line that says “Continue Reading >>” Is this possible?
Thanks!
Hey Alex!
That should happen by default, can you post a link to your blog?
Regards,
Josue
Hi Josue,
Absolutely, here’s the URL: http://alexmasica.com/posts/
Hey!
Try selecting this option:
Cheers!
Josue
Hey Josue,
So basically, I should use the blog set-up tool in the page options instead of trying to go through the Enfold>Blog Layout option?
Best,
Alex
Hey Alex!
Oh, if you are using that add this to the theme functions.php:
function change_blog_archive_style() {
global $avia_config;
if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; }
}
add_action('get_header', 'change_blog_archive_style');
Cheers!
Josue
OK great I’ll try that. Thanks so much for the help! I really appreciate it.
You are welcome, always glad to help :)
Regards,
Josue