Support

Account

Home Forums Backend Issues (wp-admin) Relationship child find parent url Reply To: Relationship child find parent 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'
                )
            ));