Download file using cURL into wp-includes/uploads
There is special wp_upload_bits() function to upload the content to the ‘uploads’ directory. Also, there is no such directory as /wp-includes/upload/. The code was not tested! <?php $video_id = ‘xxxxxxxxxxxxx’; $thumbnail_types = array( ‘0’, ‘1’, ‘2’, ‘3’, ‘default’, ‘sddefault’, ‘mqdefault’, ‘hqdefault’, ‘maxresdefault’, ); foreach( $thumbnail_types as $type ) { $file_name = $type . ‘.jpg’; $youtube_thumb_url=”http://img.youtube.com/vi/” … Read more