Help me add Taxonomy to byline

Use this:

get_the_term_list( $id, $taxonomy, $before="", $sep = '', $after="" );

In your case you have to fill in the proper values:

$destination = get_the_term_list( 
    $cb_post_id, 
    'destination', 
    ' <div class="cb-destination">', 
    ', ', 
    '</div>' 
);

Then add $destination to <div class="cb-byline">.