The order tag has no wiki summary.
1
vote
2answers
213 views
Wp_query: sort by PHP variable
Here is my problem:
For my articles, I use a custom post type "exhibitions" and posts for all other news. I am displaying them in one query ['post_type' = array('exhibitions','posts')].
The orderby ...
0
votes
1answer
43 views
Query posts from current year
I don't quite get why this isn't working. I'm trying to use the following to only show posts from the current year on the front page:
<?php query_posts( "&year=$current_year&order=DESC"); ...
0
votes
1answer
22 views
How can i change the order of comments?
I like to have the latest comment shown above. Just under the post. Now the oldest comment is shown. How can i change the order?
With regards,
Albert
4
votes
1answer
4k views
WP_Query - Order results by meta value
I've checked around and haven't seen an answer which works as of yet. I have a WP_Query with the following arguements:
$args = array(
'post_status' => 'publish',
'post_type' => ...
0
votes
1answer
227 views
Ordering of gallery images without using shortcode in theme
I using the built-in gallery in wordpress to store and sort images inside a custom post type. In the theme I was using:
$attachments = get_posts(
array('post_type' => ...
0
votes
1answer
123 views
WP_Query orderby not working with meta_value_num and menu_order
I have made a custom post type (sidebar_element) which are shown on sidebar. On each sidebar element admin can choose where in sidebar should that element be shown, ie. 'top', 'middle' or 'bottom', ...
1
vote
1answer
56 views
Make Images appear in the same order as in media browser using get children?
I would really like my images to display in the same way I've ordered them in the media browser. What am I doing wrong?
$images =& get_children( array('post_parent' => $post->ID,
...
0
votes
1answer
139 views
reorder a WP_Query, using a dropdown
I have the following loop used to display posts by category & I would like to to re-order them based on a dropdown selector
if (!isset($qry))
$qry = new ...
0
votes
1answer
76 views
Custom order categories in admin dashboard
everyone, is there way to order categories in add/edit post in admin dashboard. The problem is my order must be custom, not by Name or ID. For example:
Rumors (id 5)
News (id 1)
Features (id 7)
etc.
...
1
vote
1answer
962 views
Sort query_posts for Parent Pages to menue order or the count?
thanks to a member here i display my Parent Pages in a 2 column grid with title and excerpt. But for some reason i can't figure out how to sort all 5 Pages by the menu order for example or the order ...
0
votes
1answer
80 views
view subcategories order by id
this code to display subcategories in categories page
i need to view subcategories sort as id subcategories
can anyone update this code to view subcategories order by id
<?php
if(is_category()) {
...
0
votes
1answer
90 views
Sort query output on taxonomy term archive by post type using pre_get_posts
I'm using pre_get_posts to adjust the main query of the taxonomy term archive.
What I would like to accomplish is that the output is listed by post_type. I have a total of 4 post types and I want to ...
0
votes
1answer
55 views
List most recently added posts (with a twist)
At first I thought the task was trivial. I'd like to list the most recently added posts (say, 15 of them), but I am adding posts that are dated a few years back, yet I'd like them to show in the ...
-1
votes
1answer
105 views
Get current menu_order
WordPress implements a simple order functionality by default.
What's the common method, to retrieve the menu_order for the current post or page?
1
vote
2answers
243 views
Ordering system through Wordpress
I don't use Wordpress much, but I was wondering if anyone knew whether this would be possible in WP. Basically I want an online ordering system, so just like a normal cart where you can put things in ...
1
vote
2answers
877 views
Custom post type - order field
In a custom post type, is there a way to include the "order" field that is available for pages?
Is there any built-in logic that prevents duplicate values in the "order" field?
The idea is to be ...
1
vote
0answers
91 views
group posts by taxonomy terms
I have a site with two CPT's Projects and Artworks. I use scribu's posts2posts for connecting a bunch of artworks to each project.
In a single Project view, I want to display all connected artworks. ...
2
votes
1answer
146 views
Order by meta_key with two meta_queries
This should be simple, but I just can't pinned down a good example of the correct syntax to do this.
I want to order by the specified meta_key with two meta_queries. The problem is query_posts ...
0
votes
1answer
67 views
How can I sort posts by the date and a custom meta field?
I have custom meta field that I use for the post rating.
So I want to display posts by the date and the rating, but only for the posts that have specific rating.
For example, I want to display posts ...
0
votes
1answer
73 views
Problem with meta_value order after update
I use following array and works fine...
sort post by meta_key where value of t_count is a number:
$args = array(
'posts_per_page' => 10,
'meta_key' => 't_count',
'orderby' => ...
0
votes
1answer
166 views
Order posts by date
I'm a girl and excuse my English.
Maybe its easy and I'm dumb to know it.
But here is the problem
I want to output on the homepage the posts from the lastest 3 days.
Like this:
30/03/12
post 1
...
0
votes
1answer
101 views
Arrange posts by date in front page
I have code to show the 5 last posts from every category on the front page. However, at the moment they are ordered category by category. Is it possible to order them by post date, but still have 5 ...
0
votes
1answer
145 views
Adjust the order for returned posts
I have written a neat responsive slider for my Wordpress featured articles (feel free to use it):
<?php
$responsive = 'on' != get_option('henrik_responsive_layout') ? false : true;
...
1
vote
1answer
93 views
Arrange and separate posts
On a particular archive page I've created, I'm listing a number of posts by post name and they're listed in alphabetical order. Is there away to have them separated even further?
As in all posts ...
0
votes
1answer
131 views
Ordering by 'Title' OR 'Custom Field'
I have an issue here that I just can't wrap my head around. Let me jump right into it:
Basically I have a site that has 4 order options;
-Name Ascending
-Name Descending
-Price Ascending
-Price ...
1
vote
1answer
74 views
Order posts by price
I have a list of products on a page and am trying to order them by a custom field called "price". Unfortunately, $3,950,000 is coming before $349,000. I've used a couple of codes but neither one is ...
6
votes
2answers
118 views
alphabetically order role drop-down selection in dashboard
The site I'm working on will have a very large number of unique user roles via a members plugin. Because of that, I'd like to have the Role drop-down selection on the Add New User page to display ...
0
votes
0answers
82 views
get_option( $options ) for multiple options in an array [closed]
I have created a sortable bar where with different options of orderby queries, like Random, Most Recent and others. The code looks like this:
$orderby_sort = array(
'date' => __( 'Most ...
0
votes
3answers
160 views
How to list menu-item- ids in order for wp_nav_menu
I have a nav menu call:
'primary', 'container_class' => 'primary-menu' ) ); ?>
The output looks something like this:
<div class="primary-menu"><ul id="menu-other-links" class="menu">
...
0
votes
1answer
101 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' => ...
0
votes
1answer
424 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 ...
10
votes
3answers
5k views
Adding 'menu order' column to custom post type admin screen
I want to use the menu order attribute to control ordering for a custom post type that's going to be used for a specific purpose.
It's easy enough to add this to the CPT via supports => ...
1
vote
2answers
85 views
How do I sort posts with multiple pages
I am using a drop-down to sort posts by title, meta_value, etc. However, the sorting feature only works on the first page. The second page displays the default order rather than continuing the order ...
1
vote
1answer
116 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:
...
0
votes
1answer
96 views
Natural sort / ordering wp_dropdown_categories
I'm using the following code to display an archive dropdown:
wp_dropdown_categories( 'taxonomy=week&hierarchical=1&orderby=name' );
However the format of the taxonomy is week-1, week-2 ...
0
votes
1answer
23 views
Last three posts not being put in order by date. How to fix this?
My company adds a quote of the day each day. The last three posts that I have put are not in order though. The first quote I posted 3 days ago is at the top the post I posted yesterday is under that, ...
1
vote
1answer
44 views
All, published and pending order
On the list tables of the administration panels, I want to change the order of the filters on top of the table.
What I want:
Pending
Published
All
I tried to act on a line from the ...
1
vote
1answer
94 views
query order by date on custom type: wrong order
I know there are very similar questions ans answers out there already, but I simply cannot get my query to get into the right order.
I have a custom post type ("bb_articles") with custom fields, ...
1
vote
2answers
221 views
Order query by post meta value
//Displaying latest post per author on front page
function filter_where($where = '') {
global $wpdb;
$where .= " AND vipwp_posts.id = (select id from {$wpdb->prefix}posts p2 where ...
2
votes
1answer
294 views
Order posts by (hierarchical custom) taxonomy terms and term children
The scenario
a custom post type wiki
a (hierarchical) custom taxonomy topics
a page template archive-wiki.php
The situation
Posts show up and get ordered by post_date (which is the default).
The ...
2
votes
4answers
184 views
Query Posts in a Predefined Order
I am using the query_posts function to list a 10 specific posts which lookup by post id.
I have an array which looks like this..
Array
(
[0] => 17983
[1] => 17932
[2] => 18030
...
0
votes
3answers
693 views
How can I set a default listing order on the admin page for a custom taxonomy? (without plugins)
I'm researching this problem for days without any success... What I want is very simple: to see my custom taxonomy terms sorted by ID on the admin page. I can't believe that something this simple ...
0
votes
1answer
54 views
Order by meta values
I have 3 meta fields related to dates:
year = 2012
release_date = 14 November 2012
release_date_db = 20121114
I need to show the posts from year 2012 sorted by release_date.
I made this:
...
0
votes
1answer
63 views
Random order of posts on each request
I want my testimonials to be shuffled everytime someone clicks on my testimonials page so that it is not the same one on top all the time.
How can I do this? Where should I put the code?
I am ...
1
vote
1answer
84 views
Custom order for Mysql array
I have a Page of Posts, each post has a Custom Field "expired" which contains a date in the format YYYY-MM-DD which is used to order the posts. This date is used for a script that tells the visitor if ...
0
votes
2answers
58 views
how to retrieve WP_Query without ordering by date [duplicate]
Possible Duplicate:
Orderby = none not working
I want to use $query = new WP_Query( 'post__in' => array( 2, 5, 12, 14, 20 ) ) ); to retrieve posts by ID, I do and the result ordered by ...
1
vote
2answers
674 views
order by second word in title?
I have full names as title posts and want to order it by the surname.
How could i do this with wordpress?
in PHP it would be along the lines of -
SELECT * from posts ORDER BY ...
0
votes
1answer
32 views
How do I get a array, with the right order of the nested comments?
array (size=10)
'comment 0' =>
array (size=2)
'comment_id' => string '22' (length=2)
'parent_of' => string '0' (length=1)
'comment 1' =>
array (size=2)
'comment_id' => ...
2
votes
2answers
199 views
Orderby = none not working
I'm trying to set 'orderby = none' to my loop but it is not working. Here's my code:
$query = new WP_Query(array('showposts'=>2, 'post__in' => array(99,4,5,2,8,55), 'orderby'=>'none'));
...
1
vote
1answer
158 views
Secondary Sort (fallback) for WP_Query
What I'm after is creating a secondary (or default) orderby option for a custom query. Here is what I have:
$post_args = array(
'post_type' => $taxfunc_post_type,
'meta_key' => ...
