유튜브/비메오 ID 갖고오기 (at list.skin.php) 정보
유튜브/비메오 ID 갖고오기 (at list.skin.php)
관련링크
본문
//YOUTUBE
$videoId = get_youtube_id($list[$i]['wr_content']);
$youtube_thumbnail = get_youtube_thumbnail(get_youtube_id($list[$i]['wr_content']));
if($youtube_thumbnail) {
//$img_content = '<img src="'.$youtube_thumbnail.'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';
$img_content = "";
echo '<iframe width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'" src="https://www.youtube.com/embed/'.$videoId.'?control=0" frameborder="0" allowfullscreen></iframe>';
}
//VIMEO
$videoIdofvimeo = get_vimeo_id($list[$i]['wr_content']);
$vimeo_thumbnail = get_vimeo_thumbnail(get_vimeo_id($list[$i]['wr_content']));
if($vimeo_thumbnail) {
$img_content = "";
echo '<iframe width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'"
src="https://player.vimeo.com/video/'.$videoIdofvimeo.'"
frameborder="0"
allow="autoplay; fullscreen; picture-in-picture"
allowfullscreen></iframe>';
}
단, youtube.lib.php이 lib에 folder에 있어야 합니다.
!-->
추천
1
1
댓글 0개