if ( ($eventlisturl = get_post_meta( $post->ID, 'eventlisturl', true ) )) { $eventlistoutput = file_get_contents( $eventlisturl ); $search = array( "$location", "$url" ); $replace = array( get_the_title(), "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); $eventlistoutput = str_replace( $search, $replace, $eventlistoutput ); echo $eventlistoutput; }