web-dev-qa-db-ja.com

のアップロードディレクトリを変更 PDF ファイル

他のファイルではなくPDF files only のアップロードディレクトリを変更したいです。たとえば、PDFファイルはwp-content/uploads/pdfにアップロードされますが、他のファイルはwp-content/uploads/yyyy/mmに残ります。

私はupload_dirをフィルタリングすることが可能であることを知っていますが、ファイルタイプ/ MIMEでそれを行う方法がわかりません。

ありがとうございます。

12
Sinklar

次の 正義は安い リード、私はこのプラグインから関数の調整を終えました: http://wordpress.org/extend/plugins/custom-upload-dir/

<?php
/* 
 * Change upload directory for PDF files 
 * Only works in WordPress 3.3+
 */

add_filter('wp_handle_upload_prefilter', 'wpse47415_pre_upload');
add_filter('wp_handle_upload', 'wpse47415_post_upload');

function wpse47415_pre_upload($file){
    add_filter('upload_dir', 'wpse47415_custom_upload_dir');
    return $file;
}

function wpse47415_post_upload($fileinfo){
    remove_filter('upload_dir', 'wpse47415_custom_upload_dir');
    return $fileinfo;
}

function wpse47415_custom_upload_dir($path){    
    $extension = substr(strrchr($_POST['name'],'.'),1);
    if(!empty($path['error']) ||  $extension != 'pdf') { return $path; } //error or other filetype; do nothing. 
    $customdir = '/pdf';
    $path['path']    = str_replace($path['subdir'], '', $path['path']); //remove default subdir (year/month)
    $path['url']     = str_replace($path['subdir'], '', $path['url']);      
    $path['subdir']  = $customdir;
    $path['path']   .= $customdir; 
    $path['url']    .= $customdir;  
    return $path;
}
16
brasofilo

あなたはwordpressでwp-config.phpファイルからアップロードディレクトリを変更することができます。

define( 'UPLOADS'、 'myimages');このコードを行の前に追加してください。

require_once(ABSPATH.wp-settings.php);

これはあなたがwp-content/uploadsの代わりにmyimagesフォルダにメディアをアップロードすることを可能にします

ありがとう

1
NPatel