Support MB Relationships Events to Venues Reply To: Events to Venues

#11117
Anh TranAnh Tran
Keymaster

Hi, it should be like this:

add_action( 'mb_relationships_init', function() {
    MB_Relationships_API::register( array(
        'id'   => 'posts_to_posts',
        'from' => 'event', // Your event CPT
        'to'   => 'venue', // Your venue CPT
    ) );
} );