I have a field on the admin side where a user enters a number for a price. If a user enters 1000000 I’d like to be able to display on the front-end $1,000,000.
Any ideas on how to accomplish this?
Edit
More details, the post is a custom post type ‘property’.
To add the meta fields on the back-end I’m using Meta Box Script, http://www.deluxeblogtips.com/2011/03/meta-box-script-update-v30.html
The code to display the numbers on the front-end I use
$meta = get_post_meta(get_the_ID(), 'rw_propPrice', true); echo $meta;