The following filter produces a list of articles that have either a ‘published-on’ date or a ‘republished1’ date:
[!republish1[]] [!published-on[]] +[tag[Article]]
I want to sort it on both the date fields combined. So that the latest date in either ‘published-on’ or ‘republished1’ comes to the top.
What sort operator do I use?
There is a sortsub operator that has the following example:
[tag[Field Operators]sortsub:date<compare-by-newest-of-modified-and-created-dates>]
But I am not able to translate this into my requirement.