I have a custom post meta for make pin post
I Need to query pin post first then recent post like image below
$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'
),
);
