Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1095601

    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.

    #1096661

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.