Order of incoming objects

This topic is: resolved
Viewing 6 posts - 1 through 6 (of 6 total)
Author Posts
July 27, 2013 at 7:46 pm #3287
aguko
Post count: 43

I want to order incoming objects title by the custom field (DatePicker’s date) order which it has.

Can I use MEOW_FieldSetCollection :: psort ?

July 28, 2013 at 10:14 am #3288
traversal
Post count: 207

You should be able to use one of the WOOF_Collection sorting methods. Suppose you have a field set called “details” and a field called date. Try something like:

foreach ($wf->the->incoming->by(“details.date”)) {

}

The string expression should be evaluated for each item in the post collection and should hopefully return a sortable date string.

https://www.masterpressplugin.com/docs/developer/methods/woof-collection-by

Let me know if that works.

July 28, 2013 at 11:21 am #3289
aguko
Post count: 43

Great!

I was able to rearrange in order of the field’s date.

Very Thanks.

July 28, 2013 at 11:34 am #3290
traversal
Post count: 207

Superb, glad it worked! The sorting methods are pretty powerful 🙂

August 6, 2013 at 12:12 am #3292
aguko
Post count: 43

While I used, I have noticed that order is not right.
But I succeeded, when correcting as follows.

foreach ($wf->the->incoming->by(“details.calendar.date” ,$order=”DESC”)) {

}

details: field set
calendar: field
date: data type

Thanks.

August 7, 2013 at 8:18 pm #3298
traversal
Post count: 207

All good – sorry I should have mentioned that you can indeed specify the sort order as well. Glad you got it working!

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.

Latest From the Blog

MasterPress 1.4.1 is now available

27th May 2024

This update addresses backwards compatibility issues that were introduced in the previous update. There were some edge cases where PHP 7 had issues and it didn’t work at all on PHP 5.6. We have now changed it so that the PHP 8 compatibility changes will now only affect PHP 8 and will be more thorough… 

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