How to query_post meta_value first then recent post in WordPress

Viewed 17

I have a custom post meta for make pin post

I Need to query pin post first then recent post like image below

Query Results

$meta_query = array(
          'relation' => 'OR',
          array(
           'key' => 'yp_featured_post',
           'value' => 'on'
          ),
           array(
               'key' => 'yp_featured_post',
               'compare' => 'NOT EXISTS'
           )
        );


        $args = array(
          'post_type' => 'post',
          'posts_per_page'  => 5,
            'meta_query'  => $meta_query,
            'orderby' => array(
                 'meta_value'    => 'ASC',
                 'date' => 'DESC'
             ),
      );
0 Answers
Related