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?