I have mainpage column 2 defined as HTML in the Mainpage Options panel. I went to edit the main page template within wordpress and added a youtube embed code for placeholder 2. The youtube video displays within ie, chrome, and firefox, but its not displaying as a youtube video on my iPhone which it normally always does. It also leads me to believe that it wont show up in safari either. Has anyone else experienced this? Here is the code:
$placeholder_image1 = get_bloginfo('template_url').'/files/medium1.jpg';
#$placeholder_image2 = get_bloginfo('template_url').'/files/medium1.jpg';
#$placeholder_image3 = get_bloginfo('template_url').'/files/medium1.jpg';
$placeholder_image1 = kriesi_build_image(array('url'=>$placeholder_image1,'height'=>'124','width'=>'280'));
#$placeholder_image2 = kriesi_build_image(array('url'=>$placeholder_image2,'height'=>'124','width'=>'280'));
#$placeholder_image3 = kriesi_build_image(array('url'=>$placeholder_image3,'height'=>'124','width'=>'280'));
$placeholder[1] = $placeholder_image1.'DUMMY TEXT';
$placeholder[2] = '<h3>Fuel Doctor Commercial</h3><object width="280" height="235"><param name="movie" value="http://www.youtube-nocookie.com/v/_KENCIX_nck?fs=1&hl=en_US&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/_KENCIX_nck?fs=1&hl=en_US&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="280" height="235"></embed></object>';
$placeholder[3] = $placeholder_image1.'DUMMY TEXT';
//call class
$boxes = new kclass_display_box('mainpage','mainpage_column','Mainpage Column', $placeholder);
$boxes-> prev_image(array('height'=>'124','width'=>'280'));
$boxes-> display();
?>














