Skip to content

Instantly share code, notes, and snippets.

@otarza
Created February 24, 2014 21:20
Show Gist options
  • Save otarza/9197384 to your computer and use it in GitHub Desktop.
Save otarza/9197384 to your computer and use it in GitHub Desktop.
<?php
//chaagde functions.php failshi
function get_youtube_id($url) {
parse_str( parse_url( $url, PHP_URL_QUERY ), $result );
return $result['v'];
}
//gamoiyene loopshi
$custom_fields = get_post_custom();
if(!empty($custom_fields['youtube_url'])){
$youtube_url = $custom_fields['youtube_url']
$youtube_id = get_youtube_id($url);
$youtube_img_url = 'http://img.youtube.com/vi/'. $youtube_id .'/hqdefault.jpg';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment