query_posts Order by Custom Field
-
My customer wants to order posts by a custom field (meta value). his code looks like this:
query_posts($query_string . ‘&orderby=title&order=ASC’);
if(have_posts()) : while(have_posts()) : the_post();He wants to order the posts by meta called “list_order” instead of by title. I haven’t been able to figure out how. Suggestions?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘query_posts Order by Custom Field’ is closed to new replies.