前端上传图片 Wordpress

Front End Upload Images Wordpress

以下代码成功创建自定义 post 并向其添加元详细信息。该代码还将上传图像转储到站点根目录中的上传文件夹中。我一直坚持为 post 创建一个 foreach 参数,图像文件路径作为文本字符串进入以下自定义字段:image_1、image_2、image_3 和 image_4.

            <?php

            if(isset($_POST['url']) && $_POST['url'] == ''){

                require('../wp-load.php'); 

                $a = $_POST['a'];
                $b = $_POST['b'];
                $c = $_POST['c'];
                $d = $_POST['d'];
                $e = $_POST['e'];

                include('../src/class.fileuploader.php');

                $FileUploader = new FileUploader('files', array(
                    'uploadDir' => '../uploads/',
                    'title' => 'name'
                ));

                $data = $FileUploader->upload();

                if($data['isSuccess'] && count($data['files']) > 0) {

                    $uploadedFiles = $data['files'];
                }
                if($data['hasWarnings']) {
                    $warnings = $data['warnings'];

                    echo '<pre>';
                    print_r($warnings);
                    echo '</pre>';
                    exit;
                }

                foreach($FileUploader->getRemovedFiles('file') as $key=>$value) {
                    unlink('../uploads/' . $value['name']);
                }

                $my_post = array(
                    'ID' => '',
                    'post_title'    => wp_strip_all_tags($_POST['a']),
                    'post_content'  => $_POST['d'],
                    'post_status'   => 'draft',
                    'post_type'     => 'custompost'
                );

                $post_id = wp_insert_post($my_post);


                add_post_meta($post_id, 'b', $b, true);
                add_post_meta($post_id, 'c', $c, true);
                add_post_meta($post_id, 'e', $e, true);
                add_post_meta($post_id, 'image_1', $image_1, true);
                add_post_meta($post_id, 'image_2', $image_2, true);
                add_post_meta($post_id, 'image_3', $image_3, true);
                add_post_meta($post_id, 'image_4', $image_4, true);

            header('Location: http://www.example.com/thank-you/');

            } else {

            header('Location: http://www.example.com/thank-you/');

            }

            ?>
 if(isset($_POST['pj'])){
        global $wpdb;
            $files = $_FILES['upload_attachment'];
            foreach ($files['name'] as $key => $value) {
                if ( ! function_exists( 'wp_handle_upload' ) ) {
                    require_once( ABSPATH . 'wp-admin/includes/file.php' );
                }
                  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]
                        );

                        $upload_overrides = array( 'test_form' => false );
                        $movefile =  wp_handle_upload($file, $upload_overrides );
                        if ( $movefile && !isset( $movefile['error'] ) ) { 
                                //echo $movefile['url'];
add_post_meta($postid , 'images' , $movefile['url']);
                        }

                  }
            }


    }

将 'upload_attachment' 替换为您输入的类型文件名。

$files = $_FILES['upload_attachment'];

您可以使用此代码

将您的图片上传到 post 元数据

我在 jQuery 页上设法解决了这个问题。谢谢你的帮助。