Aventyret / solarplexus

Wordpress Block that is useful when building news sites
GNU General Public License v2.0
6 stars 1 forks source link

More/custom sorting options #22

Closed markusfinell closed 2 years ago

markusfinell commented 2 years ago

There is currently a setting to change in which order posts should be displayed, ascending or descending by date. We should add support for sorting by title and menu_order by default.

We should also enable custom sorting options by post meta. This could be defined in the config:

$config[] = [
  ...
  'order_by' => [
    'post_title', 
    '_event_date', 
    ...
  ]
] 
perarnborg commented 2 years ago

Would be good to enable aliasing of meta fields.

meta_key => [
  _event_date => 'Evenemangsdatum'
]
perarnborg commented 2 years ago

Also handle different types of fields, so we can sort as date, string, numeric.

Maybe as a setting (so you select "Sort as" when you pick a field) to avoid an overly complex configuration.

perarnborg commented 2 years ago

This was solved in #58