invp_get_the_book_value( $post_ID = null )

get_book_value


Description Description

Returns the higher of the two book value prices among NADA Guides and Kelley Blue Book.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/template-tags.php

function invp_get_the_book_value( $post_ID = null ) {
	if ( empty( $post_ID ) ) {
		$post_ID = get_the_ID();
	}
	return '$' . number_format( invp_get_raw_book_value( $post_ID ), 0, '.', ',' );
}