Custom Fields Display - Display Only Desired Custom Fields
WP 3.2.1 CP 3.1.5
I have 3 Custom Fields set up, (Country, City, Email)
I would like display only (Country and City) but not Email due to span issue.
I read some post thread about using the CSS file to hide fields but this is not effective bk robots can still read the email address.
This line of Code in single-ad_listing.php displays all the Costume Fields.
// 3.0+ display the custom fields instead (but not text areas)
cp_get_ad_details( $post->ID, $cat_id );
Does anyone have any ideas how how to display only the desired fields (Country, City)?
Something like: cp_get_ad_details( 'cp_country', 'cp_city' );
thanks