Wp_handle_upload'da yükleme dizini nasıl değiştirilir


9

Ben kendi kendi yükleme dizini belirtebilirsiniz böylece özel bir eklenti için wp_handle_upload işlevini kullanmayı çalışıyorum. Kod şu ana kadar eklenti ayarları sayfamdan bir dosya alıyor ve yıl ve ay ile klasör yükleme klasörüne yükleniyor.

Bazı ipuçları olabileceğini düşündüğüm bu bağlantıyla karşılaştım - http://yoast.com/smarter-upload-handling-wp-plugins

if(strtolower($_SERVER['REQUEST_METHOD']) == "post"){

     $overrides = array('test_form' => false);
     $file = wp_handle_upload($_FILES['binaryFile'], $overrides);

     echo "<pre>" . print_r($file, true) . "</pre>";
}

Seçtiğim bir dizine nasıl yükleme yapabilirim?

Herhangi bir yardım çok takdir çocuklar.

Yanıtlar:


5

Easy Digital Downloads'da nasıl yaptığımızın tam bir örneği:

/**
 * Set Upload Directory
 *
 * Sets the upload dir to edd. This function is called from
 * edd_change_downloads_upload_dir()
 *
 * @since 1.0
 * @return array Upload directory information
*/
function edd_set_upload_dir( $upload ) {
    $upload['subdir'] = '/edd' . $upload['subdir'];
    $upload['path'] = $upload['basedir'] . $upload['subdir'];
    $upload['url']  = $upload['baseurl'] . $upload['subdir'];
    return $upload;
}


/**
 * Change Downloads Upload Directory
 *
 * Hooks the edd_set_upload_dir filter when appropriate. This function works by
 * hooking on the WordPress Media Uploader and moving the uploading files that
 * are used for EDD to an edd directory under wp-content/uploads/ therefore,
 * the new directory is wp-content/uploads/edd/{year}/{month}. This directory
 * provides protection to anything uploaded to it.
 *
 * @since 1.0
 * @global $pagenow
 * @return void
 */
function edd_change_downloads_upload_dir() {
    global $pagenow;

    if ( ! empty( $_REQUEST['post_id'] ) && ( 'async-upload.php' == $pagenow || 'media-upload.php' == $pagenow ) ) {
        if ( 'download' == get_post_type( $_REQUEST['post_id'] ) ) {
            add_filter( 'upload_dir', 'edd_set_upload_dir' );
        }
    }
}
add_action( 'admin_init', 'edd_change_downloads_upload_dir', 999 );

Yükleme dizinini yalnızca İndirilenler özel gönderi türü sayfamızdan dosya yüklerken değiştiririz. Eklentinizin ayarlar sayfası için ayarlamanız gerekir.
Pippin

O ile "]" yoksun$upload['url'
Mario Radomanana

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.