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 10 years, 1 month 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 10 years, 1 month 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

Ability to deactivate licence domains within MasterPress account management

25th October 2024

We have just rolled out an account management feature which allows licence holders to have better control over the domains that use their licence key. From the MasterPress Account Management page, the list of Active Sites that use your licence now includes a function that allows you to remove a domain from your licence. Simply… 

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