We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
get_posts
$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?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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?
The text was updated successfully, but these errors were encountered: