芝麻web文件管理V1.00
编辑当前文件:/home/disqkgca/aqanet.org/wp-content/plugins/carousel-slider/modules/VideoCarousel/Helper.php
'https://img.youtube.com/vi/' . $video_id . '/hqdefault.jpg', 'medium' => 'https://img.youtube.com/vi/' . $video_id . '/mqdefault.jpg', 'small' => 'https://img.youtube.com/vi/' . $video_id . '/sddefault.jpg', ); } elseif ( false !== strpos( $video_url, 'vimeo.com' ) ) { $provider = 'vimeo'; $video_id = static::get_vimeo_id_from_url( $video_url ); $response = wp_remote_get( "https://vimeo.com/api/v2/video/$video_id.json" ); $thumbnail = json_decode( wp_remote_retrieve_body( $response ), true ); $thumbnail = array( 'large' => $thumbnail[0]['thumbnail_large'] ?? null, 'medium' => $thumbnail[0]['thumbnail_medium'] ?? null, 'small' => $thumbnail[0]['thumbnail_small'] ?? null, ); } $_url[] = array( 'provider' => $provider, 'url' => $video_url, 'video_id' => $video_id, 'thumbnail' => $thumbnail, ); } } return $_url; } }