As default, the Post Navigation element uses post ID for ordering.
Is it possible to use a custom field (number or text) to set a custom order and use that one for Post Navigation?
For example:
I have 3 posts with post id 1, 2, 3 and they have custom field values of 18, 19, 17 respectively.
By default, Post Navigation will lead me through 1 → 2 → 3.
But I want to order them by the custom field, so I would have 3 → 1 → 2
In case someone comes across this post and, like me, don’t get to solve the issue with the previous answer: I could fix the posts nav order by adding the following PHP code to functions.php file.
Change “event_date” for your meta key. Then instead of the posts navigation element add a shortcode in your page. In this case it’s [event_date_navigation], but you can change it on the last line of the code.