%2$s', esc_url( get_permalink( get_the_ID() ) ), /* translators: %s: Name of current post */ sprintf( esc_html__( 'Continue reading %s', 'rivet' ), '' . get_the_title( get_the_ID() ) . '' ) ); return ' … ' . $link; } add_filter( 'excerpt_more', 'rivet_excerpt_more' ); endif; /** * Add featured image as background image. */ function rivet_background_image() { $image = rivet_get_attachment_image_src( get_the_ID(), get_post_thumbnail_id( get_the_ID() ), 'rivet-post-image' ); if ( ! $image ) { return; } printf( ' style="background-image: url(\'%s\');"', esc_url( $image ) ); }