• waveminded

    (@waveminded)


    Ok, so I’ve read just about everything published about custom fields and I can’t figure this one out. Sorry if I’m missing something obvious.

    I have 3 custom fields on the post… Model, Price, Arrival Date
    I want it to display the data in that order. Right now its displaying the date, price, model… looks like its sorting according to meta data order. How can I can the display order to be consistent for all posts

    Model: Old School
    Arrival Date: 5/25/2009
    Price: $99.00

    Another aside… is there anyway to use only custom fields and remove the wordpress editor. I’m guessing this would take some serious programming? Anyone know of any plugins out there to act as a CMS and allow you to setup a VERY SPECIFIC entry system WITHOUT the default WP editor. Thanks!

Viewing 1 replies (of 1 total)
  • MichaelH

    (@michaelh)

    It’s ugly, but could use get_post_meta multiple times to do that.

    <?php
    echo 'Model ' . get_post_meta($post->ID, 'Model', true);
    echo 'Arrival Date ' . get_post_meta($post->ID, 'Arrival Date', true);
    echo 'Price ' . get_post_meta($post->ID, 'Price', true);
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Custom Fields sort order??’ is closed to new replies.