I can't get favourite posts working via the query. Shortcode works. But I need via query. I am using this:
$current_user = get_current_user_ID();
$post_ids = get_user_meta( $current_user, 'mbfp_posts', true );
$query = new WP_Query( [
'post_type' => 'research',
'post__in' => $post_ids,
'posts_per_page' => -1,
]);
return $query;
And I followed the instructions here: https://docs.metabox.io/extensions/mb-favorite-posts/
It shows everything, and I saw that others in the forum had said same issue from using query