invp_get_the_location_zip( int|null $post_ID = null )
invp_get_the_location_zip
On This Page
Parameters Parameters
- $post_ID
-
(int|null) (Optional) The post ID of a vehicle. Must be passed when using this method outside the loop.
Default value: null
Return Return
(string)
Source Source
File: includes/template-tags.php
return apply_filters( 'invp_get_the_odometer', '', $post_ID ); } // Did the user pass a string to append? if ( $append ) { $odometer .= $append; } return apply_filters( 'invp_get_the_odometer', $odometer, $post_ID ); } /** * invp_get_the_options * * @param int|null $post_ID The post ID of a vehicle. Must be passed when using this method outside the loop. * @return array An array of vehicle options
Expand full source codeCollapse full source codeView on Github