0

这有可能做到吗?

如果有http://externalsiteorso.com/blablabla.jpg之类的链接,我想自动将其设为缩略图--> 将其设为缩略图。

如果可能,我该怎么做?

我找到了这个,但它不是为了Wordpress,我猜......

$extension = pathinfo($filename, PATHINFO_EXTENSION);

// Read source image
if ($extension == ('jpg' || 'jpeg')) {
    $source_image = imagecreatefromjpeg($filename); 
    return '1';
} else if ($extension == 'png') {
    $source_image = imagecreatefrompng($filename);
    return '2';
} else {
    return 'error';
}
4

0 回答 0