Title: Custom Fields sort order??
Last modified: August 19, 2016

---

# Custom Fields sort order??

 *  [waveminded](https://wordpress.org/support/users/waveminded/)
 * (@waveminded)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/custom-fields-sort-order/)
 * 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](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/custom-fields-sort-order/#post-1051278)
 * It’s ugly, but could use [get_post_meta](http://codex.wordpress.org/Function_Reference/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.

## Tags

 * [custom fields](https://wordpress.org/support/topic-tag/custom-fields/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [MichaelH](https://wordpress.org/support/users/michaelh/)
 * Last activity: [17 years, 1 month ago](https://wordpress.org/support/topic/custom-fields-sort-order/#post-1051278)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
