Skip to content

Instantly share code, notes, and snippets.

@benpearson
Created January 9, 2025 08:09
Show Gist options
  • Save benpearson/8658da6b7854b574f1d8dccb7420210d to your computer and use it in GitHub Desktop.
Save benpearson/8658da6b7854b574f1d8dccb7420210d to your computer and use it in GitHub Desktop.
Wordpress: Get YouTube thumbnail URL
<?php
/**
* Helpers: Videos
*/
function dt_get_youtube_thumbnail_url($youtube_video_id)
{
return $youtube_video_id
? 'https://img.youtube.com/vi/' . $youtube_video_id . '/0.jpg' // get first thumbnail from youtube
: '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment