如何将图片从我的目录上传到我的WordPress?

时间:2017-03-31 作者:ExistNot

我正在将链接粘贴到input 然后使用PHP(imagecrop)裁剪图像并将其存储到服务器目录中。

$imagesrc = $_GET[\'img\'];
$img = file_get_contents($imagesrc);

$im = imagecreatefromstring($img);

$width = imagesx($im);

$height = imagesy($im);

$newwidth = \'400\';

$newheight = \'800\';

$thumb = imagecreatetruecolor($newwidth, $newheight);

imagecopyresized($thumb, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

$filename = basename($imagesrc);
imagejpeg($thumb,\'image/\'.$filename); //save image as jpg
imagedestroy($thumb); 
imagedestroy($im);
我的问题是如何将目录中存储的图像上传到wordpress?我知道如何使用<form> 手动使用,但在成功裁剪图像后不知道如何操作,然后自动上载到wordpress数据库。

Update:

已尝试将其上载或保存到wp-content\\uploads 然后我查看了wp管理/上传。php和我上传的图片没有显示在那里。

1 个回复
SO网友:Shyamali

我想这会对你有帮助。它一步一步地描述了一切,其中包括第1部分&;该教程系列的第3部分。也跟着他们。Creating a WordPress Plugin Part 2: Uploading Media and using Web Services

相关推荐

Convert emoji to images

我有一个私有插件,可以导出所有没有“主题化”的帖子,所以输出的只是内容的html(帖子主题为H1,日期/时间为H2)。如果帖子包含表情符号,它会正确显示在主题页面上。但是如果我将HTML输出保存到一个文件中,表情符号会显示为&eth;&#159;&#153;&#129; 这些是UniCode字符(我想),我需要生成的HTML页面将表情符号显示为图形图像。创建HTML输出的代码使用标准WP\\u查询对象,然后在have\\u posts循环中输出内容:$thest