Wordpress - Custom Fields and Meta Data
Given the code snippet:
What will be the output if the custom field 'price' for post ID 10 is set to '25.99'?
$value = get_post_meta(10, 'price', true);
echo $value;
What will be the output if the custom field 'price' for post ID 10 is set to '25.99'?
