web-dev-qa-db-ja.com

テーマの投稿の種類に基づいて異なるアップロードディレクトリ

アップロードした画像ファイルと画像サイズがたくさんあります。そのため、投稿タイプに基づいてメディアファイルをフォルダに整理することをお勧めします。私は このチュートリアルを読んだばかりです - しかし私が見ることができるようにそれはプラグインで動作します。テーマで使用するためにこれを変更するにはどうすればいいですか?ありがとう。

function custom_upload_directory( $args ) {
 
    $id = $_REQUEST['post_id'];
    $parent = get_post( $id )->post_parent;
 
    // Check the post-type of the current post
    if( "post-type" == get_post_type( $id ) || "post-type" == get_post_type( $parent ) ) {
        $args['path'] = plugin_dir_path(__FILE__) . "uploads";
        $args['url']  = plugin_dir_url(__FILE__) . "uploads";
        $args['basedir'] = plugin_dir_path(__FILE__) . "uploads";
        $args['baseurl'] = plugin_dir_url(__FILE__) . "uploads";
    }
    return $args;
}
add_filter( 'upload_dir', 'custom_upload_directory' );
5
user9909

私があなたの質問を正しく理解しているなら、あなたは現在のpost_typeのためにディレクトリを追加するあなたのテーマの中の機能が欲しいですか? like:uploads/post_type_name。もしそうなら、これはそのための関数です:

function wpse_16722_type_upload_dir( $args ) {

    // Get the current post_id
    $id = ( isset( $_REQUEST['post_id'] ) ? $_REQUEST['post_id'] : '' );

    if( $id ) {    
       // Set the new path depends on current post_type
       $newdir = '/' . get_post_type( $id );

       $args['path']    = str_replace( $args['subdir'], '', $args['path'] ); //remove default subdir
       $args['url']     = str_replace( $args['subdir'], '', $args['url'] );      
       $args['subdir']  = $newdir;
       $args['path']   .= $newdir; 
       $args['url']    .= $newdir; 
    }
    return $args;
}
add_filter( 'upload_dir', 'wpse_16722_type_upload_dir' );
9