Hi,
By default, the meta box only shows for from
object. You can switch object from
and to
to remove the meta box in the post and show in the user profile.
MB_Relationships_API::register( [
'id' => 'posts_to_users',
'from' => array(
'object_type' => 'user',
),
'to' => array(
'object_type' => 'post',
'post_type' => 'post',
),
'reciprocal' => true
] );