Tagged: excerpt
Hi!
I would like to have only the excerpts on my blog lists and on all archive pages – but I don’t want to have to use the read more tag. Is this possible?
Thanks!
Hey highleif,
Thanks for getting in touch with us!
Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
Jordan
Hi Jordon, of course!
Thanks!
Hey!
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
Great! Thank you very much!