ฉันต้องกรองการอัปโหลดไปยังโฟลเดอร์เฉพาะสำหรับประเภทโพสต์ที่กำหนดเองที่เรียกว่า "เอกสาร" เฉพาะสำหรับ PDF
จนถึงตอนนี้ฉันมี:
function custom_upload_directory( $args ) {
$base_directory = '/home/xxx/my_uploadfolder';
$base_url = 'http://xxxx/wp-content/uploads/my_uploadfolder';
$id = $_REQUEST['post_id'];
$parent = get_post( $id )->post_parent;
// Check the post-type of the current post
if( "document" == get_post_type( $id ) || "document" == get_post_type( $parent ) ) {
$args['path'] = $base_directory;
$args['url'] = $base_url;
$args['basedir'] = $base_directory;
$args['baseurl'] = $base_url;
}
return $args;
}
add_filter( 'upload_dir', 'custom_upload_directory' );
ใช้งานได้ แต่มีปัญหา: ไฟล์ชนิดใดก็ได้ที่ถูกเปลี่ยนเส้นทางใน my_uploadfolder นอกจากนี้ฉันไม่สามารถลบไฟล์เหล่านี้จากผู้ดูแลระบบ WP เมื่อมี ใครช่วยได้บ้าง