I created a home page to have excerpts with a read more link.
If I go to a category the posts are displayed complete. How to have them as homepage with excerpt and read more?
Thanks.
Hey peterolle,
Thank you for using Enfold.
This cide should change the content length in the archive or category page.
function ava_set_archive_content() {
global $avia_config;
if( is_archive() ) { $avia_config['blog_content'] = "excerpt_read_more"; }
}
add_action('get_header', 'ava_set_archive_content');
Just add it in the functions.php file.
Best regards,
Ismael