scribu / wp-posts-to-posts

Efficient many-to-many connections between posts, pages, custom post types, users.
http://wordpress.org/plugins/posts-to-posts/
969 stars 260 forks source link

Cannot query connected posts in ajax call #582

Open THRY opened 4 months ago

THRY commented 4 months ago

Hi

I am trying to query connected posts in an ajax call in wp-admin. While i can query normally for posts with get_posts, the p2p query is always empty:

$students = get_posts(array( 'connected_type' => 'booking_to_student', 'connected_items' => get_post($bookingId), 'post_status' => 'any', 'nopaging' => true, 'suppress_filters' => false
));

When i run this code in a page template, i do get the expected result.

Updating relationships work perfectly in ajax call.

Any hints on that? Maybe an issue with execution time?