// ...
/* If this is a video by jplayer, try to get thumbnail from video_posts */
if(empty($thumb_url) && $poster = get_post_meta($post_id, 'dp_video_poster', true))
$thumb_url = $poster;
if ( function_exists( 'uses_nelioefi' ) &&
uses_nelioefi( $post_id ) ) {
$thumb_url = nelioefi_get_thumbnail_src( $post_id );
}
/* If still no image or is wp error, define default image */
if(empty($thumb_url) || is_wp_error($thumb_url)) {
//...
I used this code for deTube but I cant see any Images now.
I took this code from another Thread where you post that.
-
This reply was modified 8 years, 3 months ago by swift212.