Fetch collection of posts, ordered by a custom date field

This topic is: not resolved
Viewing 2 posts - 1 through 2 (of 2 total)
Author Posts
October 20, 2014 at 2:12 pm #3543
dovetail
Post count: 18

I’m trying to get a collection of posts, ordered by a custom field:

$deadlines = $wf->type(“production_deadline”)->by(“production_deadline_fields.deadline_date”, “ASC”);

The above code doesn’t seem to be working. I also tried this, per one of you posts from a while back:

$deadlines = $wf->type(“production_deadline”)->by(“custom_date”, “ASC”);

(and I added this to functions.php:)
class MY_Post extends MEOW_Post {
function custom_date() {
return $this->field(“production_deadline_fields.deadline_date”);
}
}

That didn’t work either, nor did a number of variations on that theme…

Can you help me figure out how to return a collection of posts of a particular post type ordered by one of its custom fields? I should also mention that the field is a DATE field…

Thanks!

  • This topic was modified 9 years, 6 months ago by dovetail.
October 20, 2014 at 9:57 pm #3545
traversal
Post count: 207

Hey, I’ve just recreated this scenario and it seems to be working fine for me with this code:

https://gist.github.com/traversal/20cfb74a164a4a302646

EDIT: Sorry I had the ordering setup as DESC in this example, but they both worked fine.

Can you try that and let me know if it’s working for you?

Oddly, it isn’t much different to the code you’ve tried. Perhaps one of the field names in your code isn’t quite matching the definition correctly?

Thanks

  • This reply was modified 9 years, 6 months ago by traversal.
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.

Latest From the Blog

MasterPress 1.3.10 is now available

9th November 2023

MasterPress 1.3.10 is a feature and bugfix release. Workaround for fatal error introduced by changes to WordPress’ wpdb class in WordPress 6.4. Added actions to MPC files upload_field & WF image save_image functions.

Plugin Requirements

MasterPress requires a minimum of WordPress version 4.9, MySQL 5.6, and PHP version 5.6.20.

We also recommend that PHP is configured to use a memory limit of 64MB per request (128MB may be required for sites with higher complexity).

This plug-in is not compatible with the WordPress.com hosted service.

Three AM