The order tag has no wiki summary.
3
votes
1answer
173 views
Is there a way to do multiple ordering on a multiple meta_query?
I'm experimenting with searches and multiple criterias and ordering. Let's say we have a real estate site, all posts have 2 custom fields (price and surface), and we want the visitor to be able to ...
0
votes
2answers
764 views
Order by & include array by specific post ids
I have the following:
<?php $num_cols = 2; // set the number of columns here
$args = array(
'post_type' => 'testimonials',
...
1
vote
3answers
483 views
WP_query 'orderby=none' Problem
I have another database which stores post's IDs and I want do display them using WP_query to use the WP default pagination. I'm using orderby => none to preserve the original order, but the result ...
4
votes
1answer
304 views
Re-order media links?
I'm trying to re-order the links in the media box when selecting an image. I want to move "Use as featured image" above the insert into post button.
I also want to rename the "Use as featured image" ...
-1
votes
2answers
190 views
Wanted: PayPal plugin for Wordpress [closed]
i am currently searching for a wordpress plugin to integrate a paypal purchasing form conveniently to a blog. The goal is to have an order form where users have the option to either decide to order a ...
2
votes
1answer
1k views
wp_enqueue_script order - external vs inline js
I have a few scripts loading with my theme:
// loading script.js
<script type="text/javascript" src="script.js"></script>
// doing something using script.js
<script ...
5
votes
5answers
707 views
Different post sort order within different categories
I need to give each post a unique post order for multiple Categories (per post) it is in. I can imagine a solution using custom fields whereby for each Category there is a corresponding custom field ...
0
votes
2answers
167 views
post re-order on my site
I want to re-order the post 'Make Enquiry' on my site http://ecentriconline.com/surferbeachfront/ so it appears last. Please suggest a way to achieve this.
Regards,
1
vote
1answer
407 views
Sorting posts DESC based on the number of comments using WP_Query
I have this unusual requirement from my client that I need to accommodate. They want to be able to view the posts with the largest number of comments first.
At first I thought using a custom select ...