wordpress loop question for expert

Discussion in 'WordPress' started by ironmankho, Dec 21, 2012.

  1. #1
    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)
     
    ironmankho, Dec 21, 2012 IP
  2. ashishkg

    ashishkg Active Member

    Messages:
    233
    Likes Received:
    8
    Best Answers:
    3
    Trophy Points:
    68
    #2
    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
     
    ashishkg, Dec 22, 2012 IP
  3. adbox

    adbox Well-Known Member

    Messages:
    906
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    155
    Digital Goods:
    1
    #3
    Second the above answer ^^^
     
    adbox, Dec 25, 2012 IP