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

    Hello!

    Is there an automated way or a theme setting to add the Read More (<!–more–>) function to Blog Posts?

    Thank you,
    John

    #312087

    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

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