stuart-d
11/16/2015 - 3:26 PM

Change the Storefront themes recent product title

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' );