Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template.
The most likely problem is that your theme doesn't support post thumbnails. If thumbnails are supported, you should see a box titled "Featured Image" on the edit post page. If thumbnails aren't supported, your theme will have to be modified to support Featured Images or to support one of our custom functions.
On the Video Thumbnails settings page just enter the name of the custom field and the plugin will scan it.
Yes, but be sure to include the post ID as a parameter. For example: <?php $thumbnail = get_video_thumbnail(25); ?>
If the service allows a way to retrieve thumbnails, I'll do my best to add it.
The settings page includes a checklist of all your post types so you can pick and choose.
<?php if( ( $video_thumbnail = get_video_thumbnail() ) != null ) { echo "<img src='" . $video_thumbnail . "' />"; } ?>
will only display a thumbnail when one exists, but I recommend using the Featured Image setting and the_post_thumbnail template tag.
The best solution is to use the Featured Image setting and the_post_thumbnail template tag.
As an alternative you could assign a class to the element and style it with CSS.
Every theme is different, so this can be tricky if you aren't familiar with WordPress theme development. You need to edit your template in the appropriate place, replacing <?php the_content(); > with <?php the_excerpt(); > so that only an excerpt of the post is shown on the home page or wherever you would like to display the video thumbnail.
This is an unfortunate side effect of some old YouTube videos not having widescreen thumbnails. As of version 2.0, the plugin checks for HD thumbnails so this issue should be less common.
The Vimeo API has a rate limit, so in rare cases you may exceed this limit. Try again after a few hours.
Requires: 3.1 or higher
Compatible up to: 3.5.1
Last Updated: 2013-5-13
Downloads: 109,407
6 of 17 support threads in the last two months have been resolved.
Got something to say? Need help?