Hello helpful people
How would I create a filter for the following:
I want to have a drop down or select box that allows the user to pick a 'album' so it saves as child post under my-intermediary? - i have this setup in the backend just i have no idea how i can get this to work with gravity forms ...thankyou!
'<?php $child_posts = types_child_posts('my-intermediary');
foreach ($child_posts as $child_post) {
$venue_id = wpcf_pr_post_get_belongs($child_post->ID,'album');
$venue = get_post($venue_id);
echo $venue->post_title;
}
?>'