wordpress loop question for expert please note that this question is only for Wordpress expert who have experience in this field not for self title" wordpress expert " i need simple solution not bell and whistle as we know that in wordpress loop is this is modified loop for images now my question is i have 10 posts in wordpress that have custom field like 1-custom field name : price custom field price : 10,000 2-custom field name : price custom field price : 8,000 3-custom field name : price custom field price : 7,000 4-custom field name : price custom field price : 6,000 5-custom field name : price custom field price : 5,000 6-custom field name : price custom field price : 4,000 7-custom field name : price custom field price : 3,000 8-custom field name : price custom field price : 2,000 9-custom field name : price custom field price : 1,500 10-custom field name : price custom field price : 1,000 now understand my question i need wordpress loop that generate on custom field price show first custom field price : 10,000(1st post) custom field price : 8,000(2nd post) custom field price : 7,000(3rd post) custom field price : 6,000(4th post) custom field price : 5,000(5th post) custom field price : 4,000(6th post) custom field price : 3,000(7th post) custom field price : 2,000(8th post) custom field price : 1,500(9th post) custom field price : 1000(10th post)
Hello, It is simple you want to display the custom field values under each post you will use this <?php echo get_post_meta($post->ID, "price", true); ?> under the loop Thanks