79279334

Date: 2024-12-13 19:05:49
Score: 0.5
Natty:
Report link

You could use the WP_Term_Query to query terms in a specific order.

$terms_query = new WP_Term_Query(array(
    'taxonomy' => 'authors',
    'orderby'  => 'slug__in',
    'slug'     => array(
        'sally',
        'john',
        'amanda
    )
));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eloi