I have a custom content type of tab_content
with a relationship to a page
.
In my current script I have the id of a page
and I want to do a query that will list all the children of type tab_content
that have the relationship of a page
with the specified id.
All I have so far is:
new WP_Query(array('post_type' => 'tab_content'));
How do I tell the query that the custom field parent
needs to be something like 80
? Thanks
You can try using the
post_parent
paramter or WP_Query ex:I’m actually using a relation from the
custom post type
plugin.I had to reference a custom field which gave me the whole reference post.
get_custom_field('tab_content_relationship');
and viola.The only way to do what you want with WP_Query is to use two queries:
tab_content
posts associated with a page.You could use
get_posts()
for the first query if you want, but that’s all I can think of.