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.
Return Return
(string)
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, '.', ',' ); }
Expand full source code Collapse full source code View on Github