wordpress複数の条件でソート

●順に並べて同じ数字の場合は★で並べる

<?php if(is_category(‘technical-strength’)) : ?>
<?php
$args = array(
‘category_name’ => ‘カテゴリ’,
‘post_type’ => ‘post’,// 投稿タイプ
‘posts_per_page’ => 10,
‘paged’ => $paged,
‘meta_query’ => array(
‘relation’ => ‘AND’,
‘●’ => array(
‘key’ => ‘●’,
‘type’ => ‘NUMERIC’,
),
‘★’ => array(
‘key’ => ‘★’,
‘type’ => ‘NUMERIC’,
),
),
‘orderby’ => array(
‘●’ => ‘meta_value_num’,
‘★’ => ‘meta_value_num’
)
);
$my_posts = get_posts($args);
if(!empty($my_posts)): // 投稿があったら
foreach($my_posts as $post):
setup_postdata($post);
?>
<?php include(TEMPLATEPATH.’/p-list.php’);?>
<?php endforeach; elseif(empty($my_posts)): //もし記事が空だったら ?>
<p>まだ登録がございません。</p>
<?php endif; wp_reset_postdata(); ?>