youtube video loop
does any one know what to add to this code so that the youtube video loops indefinatley ? many thanks in advance
<?php
$videoID = get_post_meta($post->ID, 'cp_youtube_video_id', true);
// Check if there is a video ID
if ($videoID) {
echo '<br/><p class="dotted"></p></br><H3>Video</H3></br>';
echo '<div class="videoContainer">';
echo wp_oembed_get( 'http://www.youtube.com/watch?v=' . $videoID );
echo '</div>';
}
?>