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'
)
));