// Get the video URL and put it in the $video variable
if (isset($_GET['v'])) $videoid = $_GET['v'];
// Check if there is in fact a video URL
if ($videoid) {
echo '<div class="videoContainer">';
// Echo the embed code via oEmbed
echo wp_oembed_get( 'http://www.youtube.com/watch?v=' . $videoid );
echo '</div>';
}
?>
/post-title?v="youtube-id"