add_action( 'mb_relationships_init', function () {
MB_Relationships_API::register( array(
'id' => 'products_to_products',
'from' => array(
'object_type' => 'post',
'post_type' => array('carburetors', 'distributors','linkage-kits','fuel', 'parts'),
'meta_box' => array(
'context' => 'normal',
'columns' => 3,
'title' => 'Connected to Products',
'field_title' => 'Select Product',
),
),
'to' => array(
'object_type' => 'post',
'post_type' => array('carburetors', 'distributors','linkage-kits','fuel', 'parts'),
'meta_box' => array(
'context' => 'normal',
'columns' => 3,
'title' => 'Connected from Products',
'field_title' => 'Select Products',
),
),
) );
} );