Support

Account

Home Forums Backend Issues (wp-admin) Relationship child find parent url

Solved

Relationship child find parent url

  • Is it at all possible for a post that is being viewed could find out what post has it in it’s relationship field in order to get its url?

  • nevermind i just did it with a wp query

    $query = new WP_Query(array(
                'post_type' => 'promocontainers',
                'meta_query' => array(
                    'key' => 'videos',
                    'value' => get_the_ID(),
                    'compare' => 'LIKE'
                )
            ));
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Relationship child find parent url’ is closed to new replies.