Advanced Custom Fieldsの関連の情報をWP_Queryで使用する

Advanced Custom Fieldsの関連の情報をWP_Queryで使用する
$related_posts = get_post_meta(get_the_ID(),'post_ranking',true);
$param = array(
    'post_type' => 'post',
    'posts_per_page' => $num,
    'post__in' => $related_posts,
    'orderby' => 'post__in'
);