Plugin auto-upload-images không down image link bắng đầu bằng // không phải http
Sửa file: /wp-content/plugins/auto-upload-images/src/WpAutoUpload.php
Thêm 3 dòng vào hàm save:
- public function save($post)
- {
- $excludePostTypes = self::getOption('exclude_post_types');
- return false;
- }
-
- global $wpdb;
- $content = $post->post_content;
- $images = $this->findAllImageUrls($content);
- return false;
- }
-
- foreach ($images as $image) {
- $imgurl = $image['url'];
- $imgurl = "http:".$imgurl;