问题描述

所以,我试图找出一种方法来使用两个单独的上传文件夹,作为一般媒体上传的默认 wp-content/uploads,另一个说 wp-content/custom 用于一种特定类型的附件 (附在一个特定的 post_type 上的 PDF 文件) 。

对于组织和数据安全性来说,保持分离是很重要的,因为 PDF 文件将容纳一些敏感数据,这些敏感数据应该只能被两个自定义用户角色接受,而一般媒体是一般的。

我有点尴尬地向你显示我的工作代码,因为它是糟糕的,但在这里:

    function custom_post_type_metabox_save_function($post_id) {

    global $post;

    // Verify auto-save, nonces, permissions and so on then:

    update_post_meta($post_id, "meta_key1", $_POST["value1"]);
    update_post_meta($post_id, "meta_key2", $_POST["value2"]);

// this is where it gets uply. I change the 'upload_path' to my desired one for this post type
    update_option('upload_path','wp-content/custom-upload-dir');

// then upload the file to it
wp_upload_bits($_FILES["pdfexame"]["name"], null, file_get_contents($_FILES["pdfexame"]["tmp_name"]));

// and then change it back to default... :$
    update_option('upload_path','');

}
add_action('save_post','custom_post_type_metabox_save_function');

我真的宁愿只有 2 个上传文件是一个为这个 post-format,另一个为其余。有没有更清洁的方法去做呢?

最佳解决方案

我最终通过完全绕过 wp 上传系统来解决它,所以这是现在的样子:

/*
 * Define new upload paths
 */

$uploadfolder =  WP_CONTENT_DIR . '/exames'; // Determine the server path to upload files
$uploadurl = content_url() . '/exames/'; // Determine the absolute url to upload files
define(RM_UPLOADDIR, $uploadfolder);
define(RM_UPLOADURL, $uploadurl);

    function custom_post_type_metabox_save_function($post_id) {

        global $post;

        // Verify auto-save, nonces, permissions and so on then:

        update_post_meta($post_id, "meta_key1", $_POST["value1"]);
        update_post_meta($post_id, "meta_key2", $_POST["value2"]);
        update_post_meta($post_id, "meta_key3", $_POST["value3"]);

    $destination =  RM_UPLOADDIR; // Determine the path to upload files
    $filename = $_FILES["file"]["name"]; // Get the uploaded file name

    // This separates the extension from the rest of the file name
    $filename = strtolower($filename) ;
    $exts = split("[/\.]", $filename) ;
    $n = count($exts)-1;
    $exts = $exts[$n];

    $newname = time() . rand(); // Create a new name
    $filepath = $destination . '/' . $newname.'.'.$exts; // Get the complete file path
    $filename = $newname.'.'.$exts; // Get the new name with the extension

    // Now, if the upload was successful we save a post meta with the filename, if not, save nothing
    if (move_uploaded_file($_FILES["pdfexame"]["tmp_name"], $filepath)) {
            update_post_meta($post_id, "rm_martins_exame_url", $filename);
        }

  }
    add_action('save_post','custom_post_type_metabox_save_function');

这比以前更难看,但是如果可以使用 upload_dir 滤镜来完成,那还好多了。

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。