1

I am trying to fetch the post by meta_key in WordPress, and now I want to order posts by the meta_key's ID.

My code:

$args = array(
    'post_type'  => 'post',
    'posts_per_page' => 15,
    'meta_query' => array(
        array(
            'key'     => 'featured',
            'value'   => 'on',
            'compare' => '=',
        ),
    ),
);
$query = new WP_Query( $args );

I want to order them based on the time meta_key was created. How can I accomplish that?

Marco Bonelli
  • 63,369
  • 21
  • 118
  • 128
Peyman Naeimi
  • 390
  • 3
  • 15

0 Answers0