Hi there,
I'm using reciprocal relationship to connect 2 different post type like this:
FROM (MEMBER TEAM)
TO (PRACTICE AREA)
and is working pretty well but I would like to sort each member inside of the practice, I deactivate the reciprocal relationship and is showing up a panel to sort each member there but is not reflected on the front-end
I'm using this code:
$connected = new WP_Query( [
'post_type' => 'team',
'relationship' => [
'id' => 'area-responsible',
'to' => get_the_ID(), // You can pass object ID or full object
],
'nopaging' => true,
] );
How can I fix it?
Thank you