Change the Storefront themes recent product title
function sf_change_recent_product_title( $args ) {
$args['title'] = __( 'What\'s New', 'storefront' );
return $args;
}
add_action( 'storefront_recent_products_args', 'sf_change_recent_product_title' );