Quick PHP snippet for "featured price"?
I want to display the actual cost of my featured price on my theme. Example:
Upgrade your ad to a Featured Ad for **$10**
The thing is, I want to do it in my theme something like this:
Upgrade your ad to a Featured Ad for $<?php echo get_post_meta($post->ID, "FEATURED_PRICE", true); ?>.
So that when I change my actual featured price in the CP settings, it is reflected on my site immediately. (I like to run ads and announce it on my facebook page and stuff). However, I'm not sure what code to use, or php snippet, etc. Can anybody help?? Thanks!