Reply To: Blog Thumbnail and Excerpt

#22795
Daniel Tara
Keymaster

Add this code in your child theme’s functions.php file:

/* Insert thumbnail before post title */
function graceunderpressure_child_wp_actions() {
    if( is_home() && 'list' == get_theme_mod( 'blog_design' ) ) {
        remove_action( 'enlightenment_entry_header', 'the_title', 10, 2 );

        add_action( 'enlightenment_entry_header', 'the_post_thumbnail' );
        add_action( 'enlightenment_entry_header', 'the_title', 10, 2 );
    }
}
add_action( 'wp', 'graceunderpressure_child_wp_actions', 22 );

/* Change post excerpt length */
function graceunderpressure_excerpt_length( $length ) {
	return 55; // Replace with desired length
}
add_filter( 'excerpt_length', 'graceunderpressure_excerpt_length', 1000 );

In the future please direct you questions here. I no longer own this theme and this subforum will soon be deleted.