Hello!
Is there an automated way or a theme setting to add the Read More (<!–more–>) function to Blog Posts?
Thank you,
John
Hey John!
Try adding this at the very end of your theme / child theme functions.php file:
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