উত্তর:
এটি আপনাকে কোনও সংযুক্তিটির আপলোড হওয়ার সাথে সাথেই নামটির অনুমতি দেবে:
add_action('add_attachment', 'rename_attachment');
function rename_attachment($post_ID){
$file = get_attached_file($post_ID);
$path = pathinfo($file);
//dirname = File Path
//basename = Filename.Extension
//extension = Extension
//filename = Filename
$newfilename = "NEW FILE NAME HERE";
$newfile = $path['dirname']."/".$newfilename.".".$path['extension'];
rename($file, $newfile);
update_attached_file( $post_ID, $newfile );
}
rename_attachment
।
ফাংশন জন্য কাজ করে
আপনি foreach
লুপের আগে ফাংশনের অভ্যন্তরে যে ফাইলের নাম, ফাইলের ধরন এবং মাইম টাইপগুলি পরিবর্তন করতে চান তা সেট করতে পারেন । ফাইলটি পোস্ট আইডি পায় এবং তার পরে সংযুক্তি আইডি সংযুক্ত করা হয়, যাতে আপনি নিরাপদে আপলোড এবং একসাথে একাধিক ফাইল পরিবর্তন করতে পারেন। এটি (প্রথম) পোস্ট আইডি এবং (দ্বিতীয়) সংযুক্তি আইডি দ্বারা ফাইলগুলি অর্ডার করার বিষয়েও যত্নশীল।
function wpse30313_update_attachment_names($post_ID)
{
// Abort if WP does an autosave
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
return;
# >>>> SET
// New file name:
$new_file_name = "___";
// Best would be to take the post name as file name instead of a custom title:
# $post_data = get_post( $post_ID );
# $new_file_name = $post_data->post_name;
// The file types we want be changed:
$allowed_types = array(
'image'
);
// The mime types we want to be changed:
$allowed_ext = array(
'jpg'
,'jpeg'
,'gif'
,'png'
);
# <<<< SET
// Appended by post ID for collision safety
$new_file_name = "{$new_file_name}-{$post_ID}";
// get all attached files
$attachments = get_children( array(
'post_type' => 'attachment'
,'post_parent' => $post_ID
) );
// Bulk updating attached file names
foreach ( $attachments as $att )
{
$att_ID = $att->ID;
// Append attachment ID (collision safety)
// Also allows sorting files by post & then attchment ID
$new_name = "{$new_file_name}-{$att_ID}";
$mime_type = explode( "/", get_post_mime_type( $att->ID ) );
$file_type = $mime_type[0];
$mime_type = $mime_type[1];
// Skip file types we don't want to change
if ( ! in_array( $file_type, $allowed_types ) )
continue;
// Skip mime types we don't want to change
if ( ! in_array( $mime_type, $allowed_ext ) )
continue;
// Get current file info
$file_path = get_attached_file( $att->ID );
$path = pathinfo( $file_path );
$dir = trailingslashit( $path['dirname'] );
$ext = $path['extension'];
// Build final name
$final = "{$dir}{$new_name}.{$ext}";
// Skip if the path was already changed on upload
// If we don't set this, the function wouldn't work for older files
if ( $file_path == $final )
continue;
// Update attachment-post meta info for file
rename( $file_path, $final );
update_attached_file( $att_ID, $final );
}
return;
}
add_action( 'add_attachment', 'wpse30313_update_attachment_names' );
add_action( 'edit_attachment', 'wpse30313_update_attachment_names' );
ফাংশনটি আপনার ফাংশন.এফপি ফাইল বা একটি আরও ছোট প্লাগইন হিসাবে (আরও ভাল) যুক্ত করা উচিত। কেবল উপরে একটি প্লাগইন মন্তব্য যুক্ত করুন, এটি প্লাগইন ফোল্ডারে আপলোড করুন এবং সক্রিয় করুন।
আমি পিএইচপি এর rename
এবং প্রদত্ত ফাইলের পথ ব্যবহার করব get_attached_file
।
function rename_file( $post_id, $newname ) {
$file = get_attached_file( $post_id );
rename($file,dirname($file).$newname)
}
লক্ষ্য করুন যে এটি পরীক্ষা করা হয়নি এবং ফাইলগুলির সাথে কাজ করার সময় আপনার চূড়ান্ত সতর্কতা অবলম্বন করা উচিত। এটির কাজ করার জন্য সম্ভবত এটির পরিবর্তন দরকার তবে এটি একটি ভাল সূচনা পয়েন্ট হতে পারে। আশাকরি এটা সাহায্য করবে.
এটির সাহায্য করে কিনা তা আমাকে জানান এবং আমি কোডটি আসল ওয়ার্কিং কোডে পরিবর্তন করব।
add_action('add_attachment', 'rename');
function rename($post_ID){
$post = get_post($post_ID);
$file = get_attached_file($post_ID);
$path = pathinfo($file);
$newfilename = "mynewfilename";
$newfile = $path['dirname']."/".$newfilename.".".$path['extension'];
rename($file, $newfile);
update_attached_file( $post_ID, $newfile );
}
রেফারেন্স http://codex.wordpress.org/Function_Reference/update_attached_file http://wordpress.org/tags/add_attachment