1
vote
1answer
25 views

Reverse chronology of post listing

I"m working on modifying a theme that is based on 2010. I want to make the posts on this blog display earliest to oldest, but I don't see how to do this in the theme: I understand I need to add . ...
0
votes
1answer
81 views

wordpress change the loop order by dynamic value

At the moment i have a custom field named "price" to order my posts correctly. The following already works: $query_args['meta_key'] = 'price'; $query_args['orderby'] = 'meta_value_num'; ...
0
votes
1answer
382 views

Sorting Woocommerce products with numeric titles

Just started playing around with Woocommerce, ran into a problem. I have a bunch of items (100+) and all of them only have a number as product title, 1,2,3 etc. The problem is that Woocommerce outputs ...
0
votes
1answer
93 views

WP_Query post at custom position

Lets say I have a custom query which based on two custom post types: $wp_query = new WP_Query(array( 'post_type' => array('post-type-1', 'post-type-2'), 'post_status' => ...
1
vote
1answer
109 views

Order posts by ID in the given order

In the back-office of my theme, the users can choose which posts to display in the front page, and they can also choose in which order the selected posts should appear. I have tried like this: ...
3
votes
1answer
605 views

How can I custom order the results from wp_list_categories?

I am using wp_list_categories to return (you guessed it) a list of categories within a custom taxonomy. The orderby parameter accepts sorting by ID, name, slug, count, and term_group. Is there a way ...
2
votes
2answers
195 views

How to order posts tag by tag?

I want to order my posts by tags with only one WP_Query() In my WP_Query I would like to display 2 posts with tags portrait 2 posts with tags paysage 2 posts with tags portrait 2 posts with tags ...
0
votes
1answer
130 views

Ascending order has strange effects on wordpress loop

I have a custom loop: $args = array( 'post_type' => 'symposia_program', 'taxonomy' => 'days', 'term' => 'day-1', 'order' => 'ASC' ); $query = new WP_Query($args); if ( ...
0
votes
1answer
414 views

Changing WordPress sort order for returned child pages

I have a custom WP_Query that looks like this: $this_page_id=$wp_query->post->ID; $images = new WP_Query( array( 'post_type' => 'menu-item', 'post_parent' => $this_page_id ) ); My ...