php 图片上载 wordpress,wordpress前端图片上传

最近研究个项目需要在wordpress前端上传用户头像,在网上查了些资料!解决了这个问题!

1:首先就是在需要的地方添加文件上传框了

2: 对图片进行处理

$post=get_post(13);//测试用

if ( $_FILES ) {

$files = $_FILES['files'];

$count= count($files['name']);

foreach ($files['name'] as $key => $value) {

if ($files['name'][$key]) {

$file = array(

'name' => $files['name'][$key],

'type' => $files['type'][$key],

'tmp_name' => $files['tmp_name'][$key],

'error' => $files['error'][$key],

'size' => $files['size'][$key]

);

$_FILES = array("files" => $file);

foreach ($_FILES as $file => $array) {

$newupload = insert_attachment($file,$post->ID);//此方法将文章附加到ID为13的文章中。如果不想插入到文章可以为空""

} } } }

3:在functions.php文件添加功能函数

insert_attachment该函数的第二个参数如果为空将不附加到文章中图片。

function insert_attachment($file_handler,$post_id,$setthumb='false') {

global $wpdb;

// check to make sure its a successful upload

if ($_FILES[$file_handler]['error'] !== UPLOAD_ERR_OK) __return_false();

require_once(ABSPATH . "wp-admin" . '/includes/image.php');

require_once(ABSPATH . "wp-admin" . '/includes/file.php');

require_once(ABSPATH . "wp-admin" . '/includes/media.php');

$attach_id = media_handle_upload( $file_handler, $post_id );

$image_url = wp_get_attachment_image_src( $attach_id,'full' );

if ($setthumb){

$wpdb->insert(

$wpdb->prefix . 'postmeta', array(

'post_id' => $post_id,

'meta_key' => 'wpcf-vi-img',

'meta_value' => $image_url[0] ));

}

return $attach_id;

}

4:引用方法

$image_url = wp_get_attachment_image_src( $attach_id,'full' );//由于页面刷新的问题直接在页面使用这个方法是不生效的!需要在函数中构造此方法的功能。

//循环文章中的特征图片的方法,如果将图片附加到文章中使用这个方法可以批量输出!

$imagess=get_post_meta(13,'wpcf-vi-img',false);

foreach($imagess as $images){

echo $images;

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值