invp_is_featured( int $post_ID = null )
invp_is_featured
Contents
Description Description
Is this vehicle featured in slideshows?
Parameters Parameters
- $post_ID
-
(int) (Optional)
Default value: null
Return Return
(bool)
Source Source
File: includes/template-tags.php
function invp_is_featured( $post_ID = null ) { if( empty( $post_ID ) ) { $post_ID = get_the_ID(); } return ! empty( INVP::get_meta( 'featured', $post_ID ) ); }
Expand full source code Collapse full source code View on Github